> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dreep.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Start processing media with Dreep in minutes

## Authentication

All API requests require an API key to be passed via the `Authorization` header as a Bearer token.

```bash theme={null}
Authorization: Bearer sk_live_xxxxx
```

## Upload and Process Media

You can upload and transform media in a single request.

### Example: Uploading an Image

```bash theme={null}
curl -X POST "https://api.dreep.cloud/api/v1/http/upload" \
  -H "Authorization: Bearer sk_live_xxxxx" \
  -F "file=@hero.jpg"
```

The response will contain the CDN URL for your newly processed asset.
