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

# DAW Export

> Export multi-track project files for use in professional DAW software.

# DAW Export

`POST /api/v1/creative/daw`

Compiles and exports multi-track audio projects as DAW-compatible project files including stems and a session file.

**Credit rate:** 750 credits per minute of output

## Request

```bash theme={null}
curl -X POST https://www.voicelab360.com/api/v1/creative/daw \
  -H "Authorization: Bearer vl360_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "tracks": [
      { "name": "Vocals", "audio_url": "https://cdn.voicelab360.com/tts/job_abc.mp3" },
      { "name": "Music", "audio_url": "https://cdn.voicelab360.com/music/job_mus.mp3" },
      { "name": "SFX", "audio_url": "https://cdn.voicelab360.com/sound/job_snd.wav" }
    ],
    "format": "aaf",
    "sample_rate": 48000,
    "bit_depth": 24
  }'
```

## Parameters

| Parameter     | Type    | Required | Description                                                   |
| ------------- | ------- | -------- | ------------------------------------------------------------- |
| `tracks`      | array   | Yes      | Array of track objects. Each requires `name` and `audio_url`. |
| `format`      | string  | No       | `aaf` (default), `omf`                                        |
| `sample_rate` | integer | No       | 44100 or 48000. Default: 48000                                |
| `bit_depth`   | integer | No       | 16 or 24. Default: 24                                         |

## Response

This is an asynchronous operation. A `daw.completed` webhook is sent on completion with the download URL.

```json theme={null}
{
  "job_id": "job_daw_001",
  "status": "processing",
  "estimated_completion_ms": 45000
}
```
