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

# Upload

`POST /api/v1/files` (multipart/form-data)

Send a PDF and receive a UUID for conversion.

```bash theme={null}
curl -s -X POST \
  -H "X-Api-Key: $LEDGERIZE_API_KEY" \
  -F file=@statement.pdf \
  https://ledgerize.ai/api/v1/files
```

Response

```json theme={null}
{ "uuid": "2d09c956-854d-434d-a1bb-872d0a2cf44f", "pages": 3 }
```
