GET
/v2/feed?workId=xxx음악 생성 작업 상태 API
음악 생성 작업의 상태와 결과를 가져옵니다.
GET
https://udioapi.pro/api/v2/feed?workId=xxxtips
이 엔드포인트를 사용하여 생성 후 작업 상태를 폴링합니다.
단계: 텍스트, 첫 번째, 완료.
성공 또는 실패할 때까지 5~10초마다 폴링합니다.
requestParams
| paramName | paramType | required | description |
|---|---|---|---|
workId | string | yes | 음악 생성 작업의 고유 ID입니다. |
responses
json
{
"code": 200,
"message": "success",
"data": {
"type": "SUCCESS",
"request_body": {
"prompt": "prompt sample",
"title": "title sample",
"tags": "tags sample",
"make_instrumental": false,
"model": "chirp-v3-5"
},
"response_data": [
{
"id": "xxx",
"audio_url": "https://audiopipe.suno.ai/?item_id=xxx",
"image_url": "https://cdn2.suno.ai/image_xxx.jpeg",
"image_large_url": "https://cdn2.suno.ai/image_xxx.jpeg",
"created_at": "2025-01-01T22:10:31.665Z",
"timestamp": 1740620331100,
"status": "text",
"title": "",
"prompt": "",
"tags": "",
"duration": "",
"model_name": "chirp-v3-5",
"extra_message": "Text generated successfully.",
"fail_message": "",
"error_message": ""
},
{
"id": "xxx",
"audio_url": "https://audiopipe.suno.ai/?item_id=xxx",
"image_url": "https://cdn2.suno.ai/image_xxxx.jpeg",
"image_large_url": "https://cdn2.suno.ai/image_xxx.jpeg",
"created_at": "2025-01-01T22:10:31.665Z",
"timestamp": 1740620331100,
"status": "text",
"title": "",
"prompt": "",
"tags": "",
"duration": "",
"model_name": "chirp-v3-5",
"extra_message": "Text generated successfully.",
"fail_message": "",
"error_message": ""
}
],
"created_at": "2025-01-01T22:10:31.665Z"
}
}