The Drssed API exposes two endpoints for listing outfits. UseDocumentation Index
Fetch the complete documentation index at: https://docs.drssed.app/llms.txt
Use this file to discover all available pages before exploring further.
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.| Field | Value |
|---|---|
| Method | GET |
| Path | /users/me/outfits |
| Auth required | Yes (Bearer token) |
| Rate limit | 5 per minute |
GET /users//outfits
Returns only the public outfits for a given user.| Field | Value |
|---|---|
| Method | GET |
| Path | /users/{user_id}/outfits |
| Auth required | Yes (Bearer token) |
| Rate limit | 5 per minute |
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