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.

After processing an image via POST /images/preview, you can retrieve the resulting file directly by its ID or filename. Two endpoints are available: one for clothing images and one for outfit collage images. Both return WebP files and do not require authentication.

Endpoints

GET /uploads/clothing_images/{clothing_id}

Retrieve a processed clothing image by its clothing ID.
FieldValue
MethodGET
Path/uploads/clothing_images/{clothing_id}
Auth requiredNo
Rate limit10 per minute
ReturnsWebP image file
clothing_id
string
required
The ID of the clothing item. Also accessible with an explicit .webp extension: /uploads/clothing_images/{clothing_id}.webp.
cURL
curl --request GET \
  --url https://api.drssed.com/uploads/clothing_images/img_f1e2d3c4

GET /uploads/outfit_images/{filename}

Retrieve an outfit collage image by its filename.
FieldValue
MethodGET
Path/uploads/outfit_images/{filename}
Auth requiredNo
Rate limit10 per minute
ReturnsWebP image file
filename
string
required
The outfit image filename, without the .webp extension. The extension is appended automatically if omitted.
cURL
curl --request GET \
  --url https://api.drssed.com/uploads/outfit_images/outfit_a1b2c3d4

These endpoints do not require authentication. Images are publicly accessible by their ID or filename.
Images are served in WebP format for optimal compression and performance.