Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.drssed.app/llms.txt

Use this file to discover all available pages before exploring further.

Call GET /clothing/{clothing_id} to retrieve the full details of a single clothing item. The response includes all stored fields: category, color, seasons, tags, description, and the associated image reference.

Endpoint

FieldValue
MethodGET
Path/clothing/{clothing_id}
Auth requiredYes — Bearer token
Rate limit5 per minute

Path parameters

clothing_id
string
required
UUID of the clothing item to retrieve.

Response fields

Status: 200 OK
clothing_id
string
required
Unique identifier for the clothing item.
name
string
required
Display name of the item.
category
string
required
Category of the item. One of: JACKET, TOP, BOTTOM, FOOTWEAR.
color
string
required
Color of the item.
is_public
boolean
required
Whether the item is visible to other users.
user_id
string
required
ID of the user who owns the item.
image_id
string
required
ID of the associated image.
created_at
string
required
ISO 8601 timestamp of when the item was created.
seasons
array
Seasons the item is suited for. Possible values: Spring, Summer, Autumn, Winter.
tags
array
Style tags applied to the item. Possible values: Casual, Formal, Sports, Vintage.
description
string
Optional free-text description of the item.

Example

cURL
curl --request GET \
  --url https://api.drssed.com/clothing/clth_a1b2c3d4e5f6 \
  --header "Authorization: Bearer <token>"
Response
{
  "clothing_id": "clth_a1b2c3d4e5f6",
  "name": "White Oxford Shirt",
  "category": "TOP",
  "color": "White",
  "is_public": true,
  "user_id": "usr_9z8y7x6w",
  "image_id": "img_f1e2d3c4",
  "created_at": "2025-03-14T10:22:00+00:00",
  "seasons": ["Spring", "Summer"],
  "tags": ["Formal", "Casual"],
  "description": "Classic slim-fit Oxford button-down."
}
You can only retrieve clothing items that belong to you. Attempting to retrieve another user’s item will return a 403 error.