GET
/v2/feed?workId=xxxMusic Generate Task Status API
Fetch the status and results of a Music Generate task.
GET
https://udioapi.pro/api/v2/feed?workId=xxxtips
Use this endpoint to poll task status after generation.
Stages: text, first, complete.
Poll every 5-10 seconds until success or failure.
requestParams
| paramName | paramType | required | description |
|---|---|---|---|
workId | string | yes | The unique ID of the music generation task. |
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"
}
}