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

# GET /uploads — Retrieve processed clothing image files

> Retrieve processed clothing and outfit images using their IDs. Returns WebP images with background removed from the image processing step.

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.

| Field         | Value                                    |
| ------------- | ---------------------------------------- |
| Method        | `GET`                                    |
| Path          | `/uploads/clothing_images/{clothing_id}` |
| Auth required | No                                       |
| Rate limit    | 10 per minute                            |
| Returns       | WebP image file                          |

<ParamField path="clothing_id" type="string" required>
  The ID of the clothing item. Also accessible with an explicit `.webp` extension: `/uploads/clothing_images/{clothing_id}.webp`.
</ParamField>

```bash cURL theme={null}
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.

| Field         | Value                               |
| ------------- | ----------------------------------- |
| Method        | `GET`                               |
| Path          | `/uploads/outfit_images/{filename}` |
| Auth required | No                                  |
| Rate limit    | 10 per minute                       |
| Returns       | WebP image file                     |

<ParamField path="filename" type="string" required>
  The outfit image filename, without the `.webp` extension. The extension is appended automatically if omitted.
</ParamField>

```bash cURL theme={null}
curl --request GET \
  --url https://api.drssed.com/uploads/outfit_images/outfit_a1b2c3d4
```

***

<Note>
  These endpoints do not require authentication. Images are publicly accessible by their ID or filename.
</Note>

<Info>
  Images are served in WebP format for optimal compression and performance.
</Info>
