CQTAI
Suno · Music

Fade In / OutNEW

📌 What is thisAdd a fade-in at the start or fade-out at the end.
💡 When to useUse to smooth a song’s start or ending.

Endpoints

UsageMethodPath
Submit taskPOST/api/cqt/generator/suno
Query ResultGET/api/cqt/info/suno?id={taskId}

Request Parameters

ParamTypeRequiredDescription
taskstringRequiredFixed value: audioFade
clipIdstringRequiredSource clip ID
fadeInTimenumberFade-in end time (seconds); either this or fadeOutTime
fadeOutTimenumberFade-out start time (seconds); either this or fadeInTime
titlestringTitle after the op (optional)

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":"audioFade", "clipId":"ddd21db0-ae49-4637-95e3-74ae14979e74", "fadeInTime":2, "fadeOutTime":3 }'
# -> { "code":200, "data":"<taskId>" }

Response Example

{
  "code": 200,
  "msg": "success",
  "data": {
    "id": "f39c996a7e5a4a6f90cd4181d16f3555",
    "taskType": "audioFade",
    "status": "succeeded",
    "errorMsg": "",
    "param": {
      "task": "audioFade",
      "clipId": "ddd21db0-ae49-4637-95e3-74ae14979e74",
      "fadeInTime": 2,
      "fadeOutTime": 3
    },
    "result": {
      "clip": {
        "id": "e51a55f3-68ea-4ea2-aad0-56588f979886",
        "title": "Gentle Strength",
        "handle": "glennieboyerd3meo",
        "status": "complete",
        "user_id": "a787941b-2336-413d-b932-5c62a3b296f3",
        "metadata": {
          "tags": "instrumental,柔和, 强劲, 旋律感强, instrumental",
          "type": "edit_fade",
          "prompt": "[Instrumental]",
          "duration": 174.92,
          "is_remix": true,
          "edited_clip_id": "ddd21db0-ae49-4637-95e3-74ae14979e74",
          "uses_latest_model": false,
          "can_publish_with_vocal": true
        },
        "audio_url": "https://cdn1.suno.ai/e51a55f3-68ea-4ea2-aad0-56588f979886.mp3",
        "image_url": "https://cdn2.suno.ai/image_e51a55f3-68ea-4ea2-aad0-56588f979886.jpeg",
        "image_large_url": "https://cdn2.suno.ai/image_large_e51a55f3-68ea-4ea2-aad0-56588f979886.jpeg",
        "video_url": "",
        "clip_roots": {
          "clips": [
            {
              "id": "ddd21db0-ae49-4637-95e3-74ae14979e74",
              "title": "Gentle Strength",
              "image_url": "https://cdn2.suno.ai/image_ddd21db0-ae49-4637-95e3-74ae14979e74.jpeg",
              "user_handle": "glennieboyerd3meo",
              "user_display_name": "glennieboyerd3meo"
            }
          ],
          "clip_attribution_type": "remix"
        },
        "media_urls": [
          { "url": "https://d2lwuy8qc234o3.cloudfront.net/1/clip/e51a55f3-68ea-4ea2-aad0-56588f979886.m4a", "delivery": "progressive", "content_type": "m4a-opus" },
          { "url": "https://cdn1.suno.ai/e51a55f3-68ea-4ea2-aad0-56588f979886.mp3", "delivery": "progressive", "content_type": "mp3" }
        ],
        "model_name": "chirp-v4",
        "batch_index": 0,
        "created_at": "2026-07-09T03:42:40.416Z",
        "major_model_version": "v4"
      },
      "status": "complete",
      "action_clip_id": "e51a55f3-68ea-4ea2-aad0-56588f979886"
    },
    "createTime": "2026-07-09 11:42:25",
    "completeTime": "2026-07-09 11:42:52"
  }
}

Response Fields

FieldTypeDescription
codenumberStatus code; 200 = success
msgstringMessage
data.idstringTask ID (the taskId returned on submit)
data.taskTypestringTask type; always "audioFade"
data.statusstringStatus: pending / succeeded / failed
data.paramobjectEcho of the request params you submitted
data.resultobject⚠ An object { clip, status, action_clip_id }; the result is under result.clip
data.result.action_clip_idstringResulting clip ID (= result.clip.id)
data.result.clip.idstringThe faded clip’s clipId
data.result.clip.titlestringTitle (inherited from the source song)
data.result.clip.audio_urlstringProcessed audio URL (mp3)
data.result.clip.image_urlstringCover image URL (image_large_url is the large one)
data.result.clip.statusstringClip status; "complete" = ready to download
data.result.clip.metadata.typestringUnderlying type: edit_fade
data.result.clip.metadata.edited_clip_idstringSource clip ID processed (= the clipId you passed)
data.result.clip.metadata.durationnumberTotal audio duration (seconds)
data.result.clip.media_urlsarrayMulti-format audio URLs (m4a-opus / mp3)
data.createTime / completeTimestringTask submit time / completion time
其它字段clip_roots (source info) / action_config / model_badges, etc. are for Suno UI

Billing & Credits

2 credits (x your user rate). Auto-refunded on failure.