Skip to main content
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

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
Response
You can only retrieve clothing items that belong to you. Attempting to retrieve another user’s item will return a 403 error.