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 /outfits/{outfit_id} to fetch a single outfit in full detail. The response includes the complete canvas scene — every CanvasPlacement object with its coordinates, layer order, scale, and rotation — along with all metadata such as tags and seasons. You can retrieve any outfit you own, or any outfit that another user has made public.
Endpoint
Field Value Method GETPath /outfits/{outfit_id}Auth required Yes (Bearer token) Rate limit 5 per minute
Path parameters
The ID of the outfit to retrieve.
Response fields
Status: 200 OK
The requested outfit object. Show Outfit object properties
Unique identifier for the outfit.
ID of the user who owns this outfit.
Display name of the outfit.
Optional description of the outfit.
Whether the outfit is visible to other users.
Whether the outfit is marked as a favorite.
Seasons the outfit is suitable for. Possible values: Spring, Summer, Autumn, Winter.
Style tags applied to the outfit. Possible values: Casual, Formal, Sports, Vintage, Outdoor, Party, Work, Beach.
Array of CanvasPlacement objects describing the layout of the outfit. Show CanvasPlacement properties
ID of the clothing item placed on the canvas.
Horizontal position of the item on the canvas.
Vertical position of the item on the canvas.
Layer order. Higher values appear on top.
Size multiplier relative to the item’s default size.
Rotation of the item in degrees.
ISO 8601 timestamp of when the outfit was created.
ISO 8601 timestamp of when the outfit was last updated.
Example
curl --request GET \
--url https://api.drssed.com/outfits/otf_abc123 \
--header 'Authorization: Bearer <token>'
{
"outfit" : {
"outfit_id" : "otf_abc123" ,
"user_id" : "usr_xyz789" ,
"name" : "Weekend Brunch" ,
"description" : "Relaxed but put-together." ,
"is_public" : true ,
"is_favorite" : false ,
"seasons" : [ "Spring" , "Summer" ],
"tags" : [ "Casual" ],
"scene" : [
{
"clothing_id" : "clth_shirt_001" ,
"x" : 0.5 ,
"y" : 0.3 ,
"z" : 2 ,
"scale" : 1.0 ,
"rotation" : 0.0
},
{
"clothing_id" : "clth_pants_002" ,
"x" : 0.5 ,
"y" : 0.7 ,
"z" : 1 ,
"scale" : 1.0 ,
"rotation" : 0.0
}
],
"created_at" : "2024-06-20T14:00:00+00:00" ,
"updated_at" : "2024-06-20T14:00:00+00:00"
}
}