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

# Remaster

> Remaster an existing Suno clip with a newer model and quality sliders. See supported inputs, parameters, pricing, response fields, and API examples.

Re-render an existing clip through Suno's remaster model. The song stays the same; production quality, tone, and stereo image are refreshed. Each request returns a pair of remastered clips.

## Model

```
suno-ai/remaster
```

## Parameters

| Parameter            | Type   | Required | Description                           |
| -------------------- | ------ | -------- | ------------------------------------- |
| `clip_id`            | string | Yes      | Clip ID to remaster                   |
| `tags`               | string | No       | Style tags to steer the remaster      |
| `variation_category` | string | No       | Variation strength. Default: `normal` |
| `freedom`            | number | No       | Creative freedom, `0`–`1`             |
| `tone`               | number | No       | Tonal balance, `0`–`1`                |
| `strength`           | number | No       | Remaster strength, `0`–`1`            |
| `stereo_width`       | number | No       | Stereo width, `0`–`1`                 |
| `clarity`            | number | No       | Clarity, `0`–`1`                      |

Omit a slider to keep Suno's default for it.

## 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/remaster",
    "input": {
      "clip_id": "1901ec96-72c6-4c26-8e56-91028ca6070d",
      "clarity": 0.8,
      "stereo_width": 0.6
    }
  }'
```

## Response

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

The completed task returns `clips`, the same shape as [Music Generation](/models/audio/suno/music).

<Note>
  **Volume discounts** are available for almost all models. Reach out at [contact@unifically.com](mailto:contact@unifically.com) to discuss custom pricing.
</Note>
