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

# Cover Generation

> Create cover versions with Suno AI

Generate a cover version of an existing song or uploaded audio.

## Model

```
suno-ai/cover
```

## Parameters

| Parameter                | Type    | Required | Description                                                                                                                                                                            |
| ------------------------ | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `mv`                     | string  | Yes      | Model version                                                                                                                                                                          |
| `custom`                 | boolean | Yes      | Simple or custom mode                                                                                                                                                                  |
| `clip_id`                | string  | No       | Existing Suno clip ID                                                                                                                                                                  |
| `audio_url`              | string  | No       | Audio file URL                                                                                                                                                                         |
| `gpt_description_prompt` | string  | No       | Simple mode description                                                                                                                                                                |
| `prompt`                 | string  | No       | Custom mode prompt                                                                                                                                                                     |
| `title`                  | string  | No       | Title for cover                                                                                                                                                                        |
| `make_instrumental`      | boolean | No       | Generate instrumental                                                                                                                                                                  |
| `custom_model`           | object  | No       | Required when `mv` is `chirp-custom`. Inline custom model — `{ "name": string, "audio_urls": string[] }`. See [Music Generation › Custom Model](/models/audio/suno/music#custom-model) |

## Example - Cover Existing Clip

```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/cover",
    "input": {
      "mv": "chirp-bluejay",
      "custom": false,
      "clip_id": "5a6bb955-1536-4f43-877a-b4aa9fb18a4e",
      "gpt_description_prompt": "Jazz style cover with saxophone"
    }
  }'
```

## Example - Upload and Cover

```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/cover",
    "input": {
      "mv": "chirp-bluejay",
      "custom": true,
      "audio_url": "https://example.com/audio.mp3",
      "prompt": "Acoustic guitar cover with soft vocals",
      "title": "Acoustic Cover"
    }
  }'
```

## Response

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