Skip to main content
The Drssed API exposes two endpoints for listing outfits. Use 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

user_id
string
required
The ID of the user whose public outfits you want to retrieve. Only applies to GET /users/{user_id}/outfits.

Query parameters

limit
integer
default:"50"
Maximum number of outfits to return per page.
offset
integer
default:"0"
Number of outfits to skip before returning results. Use together with limit to paginate through results.

Response fields

Status: 200 OK
total
integer
required
Total number of outfits matching the query, regardless of pagination.
limit
integer
required
The limit value used for this response.
offset
integer
required
The offset value used for this response.
outfits
object[]
required
Array of outfit objects.

Example

cURL
Response