GET/suno/uploads/audio/{id}
┌─────────────────────────────────────────────────────────────────┐
│ 第1步: 请求上传授权 │
│ POST /suno/uploads/audio │
│ ↓ 返回: upload_id, upload_url │
└─────────────────────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────────────────────┐
│ 第2步: 上传文件到S3 (客户端直连,不经过API) │
│ PUT {upload_url} │
│ ↓ 上传音频文件 │
└─────────────────────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────────────────────┐
│ 第3步: 报告上传完毕 │
│ POST /suno/uploads/audio/{id}/upload-finish │
│ ↓ 通知服务器文件已上传 │
└─────────────────────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────────────────────┐
│ 第4步: 轮询查询上传状态 (直到状态为 completed) │
│ GET /suno/uploads/audio/{id} │
│ ↓ 每2-3秒查询一次 │
└─────────────────────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────────────────────┐
│ 第5步: 初始化音频clip │
│ POST /suno/uploads/audio/{id}/initialize-clip │
│ ↓ 返回: clip_id │
└─────────────────────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────────────────────┐
│ 第6步: 使用clip_id创建续写任务 │
│ POST /suno/submit/music │
│ ↓ 返回: task_id (开始计费) │
└─────────────────────────────────────────────────────────────────┘
来源原始接口定义(用于追溯)
以下内容来自 Apifox 快照,可能包含兼容层字段或旧示例;公开调用请以本页的协议说明和当前模型列表为准。
{
"id": 495899769,
"name": "查询上传处理状态",
"type": "http",
"serverId": "",
"preProcessors": [],
"postProcessors": [],
"inheritPreProcessors": {},
"inheritPostProcessors": {},
"description": "┌─────────────────────────────────────────────────────────────────┐\n│ 第1步: 请求上传授权 │\n│ POST /suno/uploads/audio │\n│ ↓ 返回: upload_id, upload_url │\n└─────────────────────────────────────────────────────────────────┘\n ↓\n┌─────────────────────────────────────────────────────────────────┐\n│ 第2步: 上传文件到S3 (客户端直连,不经过API) │\n│ PUT {upload_url} │\n│ ↓ 上传音频文件 │\n└─────────────────────────────────────────────────────────────────┘\n ↓\n┌─────────────────────────────────────────────────────────────────┐\n│ 第3步: 报告上传完毕 │\n│ POST /suno/uploads/audio/{id}/upload-finish │\n│ ↓ 通知服务器文件已上传 │\n└─────────────────────────────────────────────────────────────────┘\n ↓\n┌─────────────────────────────────────────────────────────────────┐\n│ 第4步: 轮询查询上传状态 (直到状态为 completed) │\n│ GET /suno/uploads/audio/{id} │\n│ ↓ 每2-3秒查询一次 │\n└─────────────────────────────────────────────────────────────────┘\n ↓\n┌─────────────────────────────────────────────────────────────────┐\n│ 第5步: 初始化音频clip │\n│ POST /suno/uploads/audio/{id}/initialize-clip │\n│ ↓ 返回: clip_id │\n└─────────────────────────────────────────────────────────────────┘\n ↓\n┌─────────────────────────────────────────────────────────────────┐\n│ 第6步: 使用clip_id创建续写任务 │\n│ POST /suno/submit/music │\n│ ↓ 返回: task_id (开始计费) │\n└─────────────────────────────────────────────────────────────────┘\n```",
"operationId": "",
"sourceUrl": "",
"method": "get",
"path": "/suno/uploads/audio/{id}",
"tags": [],
"status": -2,
"requestBody": {
"type": "application/json",
"parameters": [],
"jsonSchema": {
"type": "object",
"properties": {},
"x-apifox-orders": []
},
"examples": [],
"mediaType": "",
"oasExtensions": "",
"required": true,
"additionalContentTypes": []
},
"parameters": {
"path": [
{
"id": "id#0",
"name": "id",
"required": true,
"enable": true,
"description": "",
"type": "string",
"sampleValue": "e9451fca-e267-4e7f-b23e-c7419aa79cab"
}
],
"query": [],
"cookie": [],
"header": []
},
"commonParameters": {
"query": [],
"body": [],
"cookie": [],
"header": []
},
"auth": {},
"responses": [
{
"id": 195821643,
"name": "成功",
"code": 200,
"contentType": "json",
"jsonSchema": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"status": {
"type": "string"
},
"error_message": {
"type": "null"
},
"s3_id": {
"type": "string"
},
"title": {
"type": "string"
},
"image_url": {
"type": "string"
}
},
"required": [
"id",
"status",
"error_message",
"s3_id",
"title",
"image_url"
],
"x-apifox-orders": [
"id",
"status",
"error_message",
"s3_id",
"title",
"image_url"
]
},
"itemSchema": {},
"description": "",
"mediaType": "",
"headers": []
}
],
"responseExamples": [
{
"name": "成功示例",
"responseId": 195821643,
"data": "{\r\n \"id\": \"c25a8c59-000a-481f-ac28-efde2dc9e677\",\r\n \"status\": \"complete\",\r\n \"error_message\": null,\r\n \"s3_id\": \"m_05c9b477-4519-4810-9ffa-00580c082067\",\r\n \"title\": \"S-100096-100096-84069F8B\",\r\n \"image_url\": \"https://cdn1.suno.ai/image_05c9b477-4519-4810-9ffa-00580c082067.png\"\r\n}",
"description": "",
"oasKey": "",
"oasExtensions": "",
"id": "019fc09b-0b23-708d-ac62-155ef91cc278"
}
],
"codeSamples": [],
"projectId": 8662722,
"moduleId": 8310462,
"folderId": 92436137,
"ordering": 60,
"responsibleId": 0,
"commonResponseStatus": {},
"advancedSettings": {
"disabledSystemHeaders": {}
},
"customApiFields": {},
"oasExtensions": "",
"mockScript": {},
"createdAt": "2026-08-02T03:53:34.000Z",
"updatedAt": "2026-08-06T12:15:55.000Z",
"creatorId": 2863449,
"editorId": 2863449,
"creatorUserId": 2863449,
"editorUserId": 2863449,
"responseChildren": [],
"visibility": "INHERITED",
"securityScheme": {},
"callbacks": ""
}