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

# WAV Export

> Export Suno clips as WAV files

Export Suno AI clips as high-quality WAV audio files.

## Model

```
suno-ai/wav
```

## Parameters

| Parameter | Type   | Required | Description              |
| --------- | ------ | -------- | ------------------------ |
| `clip_id` | string | Yes      | Clip ID to export as WAV |

## Example

```bash theme={null}
curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "suno-ai/wav",
    "input": {
      "clip_id": "1901ec96-72c6-4c26-8e56-91028ca6070d"
    }
  }'
```

## Response

```json theme={null}
{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "abc123def456",
    "status": "processing"
  }
}
```
