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 /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

FieldValue
MethodGET
Path/outfits/{outfit_id}
Auth requiredYes (Bearer token)
Rate limit5 per minute

Path parameters

outfit_id
string
required
The ID of the outfit to retrieve.

Response fields

Status: 200 OK
outfit
object
required
The requested outfit object.

Example

cURL
curl --request GET \
  --url https://api.drssed.com/outfits/otf_abc123 \
  --header 'Authorization: Bearer <token>'
Response
{
  "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"
  }
}