> ## 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.

# Drssed API: wardrobe management for your app

> Drssed API lets you digitize, categorize, and manage clothing and outfits with AI-powered image processing. Build wardrobe features into any app.

Drssed is a wardrobe management API that lets you store clothing items, build outfits, and process clothing images — complete with automatic background removal and AI-based categorization. Whether you are building a mobile client or integrating wardrobe features into an existing app, this documentation covers everything you need.

<CardGroup cols={2}>
  <Card title="Quick Start" icon="rocket" href="/quickstart">
    Make your first API call in minutes — create a guest session and add a clothing item.
  </Card>

  <Card title="Authentication" icon="lock" href="/authentication">
    Learn how to authenticate requests with JWT tokens, refresh sessions, and upgrade guest accounts.
  </Card>

  <Card title="Wardrobe Guide" icon="shirt" href="/guides/managing-clothing">
    Step-by-step guide to adding, updating, and organizing clothing items in a wardrobe.
  </Card>

  <Card title="API Reference" icon="code" href="/api/auth/guest">
    Full reference for every endpoint — auth, clothing, outfits, images, and sync.
  </Card>
</CardGroup>

## What you can build

Drssed API gives you the building blocks for a full wardrobe management experience:

* **Digitize a wardrobe** — upload clothing photos and get back AI-detected category, color, seasons, and style tags automatically
* **Organize clothing** — create, read, update, and delete individual items with rich metadata (name, category, color, seasons, tags)
* **Build outfits** — combine clothing items into named outfits with scene placements, tags, and seasonal metadata
* **Sync across devices** — use the incremental sync endpoints to keep clients up to date efficiently without fetching full datasets

<Steps>
  <Step title="Get an access token">
    Call `POST /auth/guest` to instantly receive a JWT access token — no sign-up required to start exploring.
  </Step>

  <Step title="Upload a clothing image">
    Send a photo to `POST /images/preview` and receive the processed image URL along with AI-detected category, color, seasons, and tags.
  </Step>

  <Step title="Save the clothing item">
    Use the returned `image_id` to call `POST /users/me/clothing` and persist the item to your wardrobe.
  </Step>

  <Step title="Create an outfit">
    Combine saved clothing items into an outfit with `POST /users/me/outfits`, specifying a scene layout, seasons, and tags.
  </Step>
</Steps>
