Suno · Music
RemasterNEW
📌 What is this:Re-optimize a song’s audio quality and clarity.
💡 When to use:Use when a song’s quality isn’t good enough.
Endpoints
| Usage | Method | Path |
|---|---|---|
| Submit task | POST | /api/cqt/generator/suno |
| Query Result | GET | /api/cqt/info/suno?id={taskId} |
Request Parameters
| Param | Type | Required | Description |
|---|---|---|---|
| task | string | Required | Fixed value: remaster |
| clipId | string | Required | ID of the clip to remaster |
| modelName | string | Required | chirp-carp (V5, recommended) / chirp-bass (V4.5+) |
Request Example
curl -X POST https://api.cqtai.com/api/cqt/generator/suno \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json' \
-d '{ "task":"remaster", "clipId":"9fa578f8-deb9-41fd-8eb2-31f31d1ab516", "modelName":"chirp-carp" }'
# -> { "code":200, "data":"<taskId>" }Response Example
{
"code": 200,
"msg": "success",
"data": {
"id": "a8093d9b5c064bef8885560aa9f034c5",
"taskType": "remaster",
"status": "succeeded",
"errorMsg": "",
"param": {
"task": "remaster",
"clipId": "9fa578f8-deb9-41fd-8eb2-31f31d1ab516",
"modelName": "chirp-carp"
},
"result": {
"clips": [
{
"id": "bc066df7-d3cd-4632-bf1c-ffa5d0be0c2a",
"title": "星尘回音 (Remastered)",
"handle": "mosellesantiagoxfslm",
"status": "complete",
"user_id": "9ad4dbdb-9010-4f07-98f1-537b876e3fb9",
"metadata": {
"tags": "ambient pop",
"task": "upsample",
"type": "upsample",
"prompt": "[Verse 1] 我关了所有的光 让黑暗漫进窗 …(完整歌词已省略)",
"duration": 202.92,
"is_remix": true,
"edited_clip_id": "9fa578f8-deb9-41fd-8eb2-31f31d1ab516",
"upsample_clip_id": "9fa578f8-deb9-41fd-8eb2-31f31d1ab516",
"uses_latest_model": false,
"can_publish_with_vocal": true
},
"audio_url": "https://cdn1.suno.ai/bc066df7-d3cd-4632-bf1c-ffa5d0be0c2a.mp3",
"image_url": "https://cdn2.suno.ai/image_bc066df7-d3cd-4632-bf1c-ffa5d0be0c2a.jpeg",
"image_large_url": "https://cdn2.suno.ai/image_large_bc066df7-d3cd-4632-bf1c-ffa5d0be0c2a.jpeg",
"video_url": "",
"clip_roots": {
"clips": [
{
"id": "9fa578f8-deb9-41fd-8eb2-31f31d1ab516",
"title": "星尘回音",
"image_url": "https://cdn2.suno.ai/image_9fa578f8-deb9-41fd-8eb2-31f31d1ab516.jpeg",
"user_handle": "mosellesantiagoxfslm",
"user_display_name": "mosellesantiagoxfslm"
}
],
"clip_attribution_type": "remix"
},
"media_urls": [
{ "url": "https://d2lwuy8qc234o3.cloudfront.net/1/clip/bc066df7-d3cd-4632-bf1c-ffa5d0be0c2a.m4a", "delivery": "progressive", "content_type": "m4a-opus" },
{ "url": "https://cdn1.suno.ai/bc066df7-d3cd-4632-bf1c-ffa5d0be0c2a.mp3", "delivery": "progressive", "content_type": "mp3" }
],
"model_name": "chirp-carp",
"batch_index": 0,
"created_at": "2026-07-08T08:18:59.224Z",
"major_model_version": "v5"
},
{
"id": "2ddcb07c-3c39-4b6a-ade4-6fc29ce37eae",
"title": "星尘回音 (Remastered)",
"status": "complete",
"metadata": {
"task": "upsample",
"type": "upsample",
"duration": 202.92,
"is_remix": true,
"upsample_clip_id": "9fa578f8-deb9-41fd-8eb2-31f31d1ab516"
},
"audio_url": "https://cdn1.suno.ai/2ddcb07c-3c39-4b6a-ade4-6fc29ce37eae.mp3",
"image_url": "https://cdn2.suno.ai/image_2ddcb07c-3c39-4b6a-ade4-6fc29ce37eae.jpeg",
"model_name": "chirp-carp",
"batch_index": 1,
"major_model_version": "v5"
}
]
},
"createTime": "2026-07-08 16:18:56",
"completeTime": "2026-07-08 16:19:31"
}
}Response Fields
| Field | Type | Description |
|---|---|---|
| code | number | Status code; 200 = success |
| msg | string | Message |
| data.id | string | Task ID (the taskId returned on submit) |
| data.taskType | string | Task type; always "remaster" |
| data.status | string | Status: pending / succeeded / failed |
| data.param | object | Echo of the request params you submitted |
| data.result | object | ⚠ An object (NOT an array); the 2 candidates live under result.clips |
| data.result.clips | array | The remastered clips (2 candidates) |
| data.result.clips[].id | string | The remastered clip’s clipId |
| data.result.clips[].title | string | Title, with a "(Remastered)" suffix |
| data.result.clips[].audio_url | string | Remastered audio URL (mp3) |
| data.result.clips[].image_url | string | Cover image URL (image_large_url is the large one) |
| data.result.clips[].status | string | Clip status; "complete" = ready to download |
| data.result.clips[].metadata.task / type | string | Underlying task, both "upsample" (remaster runs via upsample) |
| data.result.clips[].metadata.upsample_clip_id | string | Source clip ID remastered (= the clipId you passed; edited_clip_id is the same) |
| data.result.clips[].metadata.duration | number | Total audio duration (seconds) |
| data.result.clips[].model_name | string | Model used for remaster (= the modelName you passed, e.g. chirp-carp) |
| data.result.clips[].clip_roots | object | Source song info: title / cover / author |
| data.result.clips[].media_urls | array | Multi-format audio URLs (m4a-opus / mp3) |
| data.createTime / completeTime | string | Task submit time / completion time |
| 其它字段 | — | action_config / model_badges / secondary_badges / ownership / avatar_image_url, etc. are for Suno UI and can be ignored |
Billing & Credits
40 credits (x your user rate). Auto-refunded on failure.