GET /users/me/clothing returns all of your items, including private ones. GET /users/{user_id}/clothing returns only publicly visible items from another user’s wardrobe.
Endpoints
| Field | Private list | Public list |
|---|---|---|
| Method | GET | GET |
| Path | /users/me/clothing | /users/{user_id}/clothing |
| Auth required | Yes — Bearer token | Yes — Bearer token |
| Rate limit | 5 per minute | 5 per minute |
| Visibility | All items (including private) | Public items only (is_public: true) |
Query parameters
Maximum number of clothing items to return per page.
Number of items to skip before returning results. Use with
limit for pagination.Filter results to a specific category. Accepted values:
JACKET, TOP, BOTTOM, FOOTWEAR.Response fields
Status: 200 OKThe
limit value used for this page of results.The
offset value used for this page of results.Array of clothing objects.
Example
cURL
Response