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

# Convert

`POST /api/v1/convert`

Start a conversion for one or more uploaded UUIDs. Supported formats: `JSON`, `CSV`, `XLS`.

```bash theme={null}
curl -s -X POST \
  -H "X-Api-Key: $LEDGERIZE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ids":["<uuid>"],"format":"JSON"}' \
  https://ledgerize.ai/api/v1/convert
```

Response

```json theme={null}
{ "jobId": "job_123", "accepted": ["<uuid>"] }
```
