GET /users/me/outfits to retrieve all of your own outfits — both public and private. Use GET /users/{user_id}/outfits to browse another user’s outfits, which only returns outfits they have marked as public. Both endpoints return paginated results.
Endpoints
GET /users/me/outfits
Returns all outfits belonging to the authenticated user, including private ones.GET /users//outfits
Returns only the public outfits for a given user.Path parameters
The ID of the user whose public outfits you want to retrieve. Only applies to
GET /users/{user_id}/outfits.Query parameters
Maximum number of outfits to return per page.
Number of outfits to skip before returning results. Use together with
limit to paginate through results.Response fields
Status: 200 OKTotal number of outfits matching the query, regardless of pagination.
The
limit value used for this response.The
offset value used for this response.Array of outfit objects.
Example
cURL
Response