Light Mode
Get Generated Music
GET
/api/suno/v1/music/{task_id}This endpoint from PiAPI's Suno API retrieves the output of music task.
Request
Path Params
task_id
string
required
Header Params
X-API-Key
string
required
Insert your API Key herer
Example:
{{x-api-key}}
Body Params application/json
task_id
string
required
Insert the returned task_id from the Generate Music/Generate Full Song endpoint
Example
{
"task_id": "string"
}
Request samples
Responses
OK(200)
Bad Request(400)
Unauthorized(401)
Server Error(500)
HTTP Code: 200
Content Type : JSONapplication/json
OK - Successful Response
Data Schema
code
integer
optional
data
object
optional
task_id
string
optional
status
string
optional
input
string
optional
clips
object
optional
message
string
optional
ExampleExample 1
{
"code": 200,
"data": {
"task_id": "2d688060***************5bfd5d46e734",
"status": "completed",
"input": "{\"custom_mode\":false,\"gpt_description_prompt\":\"blowing in the wind\",\"make_instrumental\":false,\"prompt\":\"\",\"title\":\"\",\"continue_at\":0,\"continue_clip_id\":\"\",\"mv\":\"chirp-v3-0\",\"tags\":\"\"}",
"clips": {
"41a87de7****************ba2816695d99": {
"id": "41a87de7****************ba2816695d99",
"video_url": "https://cdn1.suno.ai/41a87de7****************ba2816695d99.mp4",
"audio_url": "https://cdn1.suno.ai/41a87de7****************ba2816695d99.mp3",
"image_url": "https://cdn1.suno.ai/image_41a87de7****************ba2816695d99.png",
"image_large_url": "https://cdn1.suno.ai/image_large_41a87de7****************ba2816695d99.png",
"is_video_pending": false,
"major_model_version": "v3",
"model_name": "chirp-v3",
"metadata": {
"tags": "Rock Metal",
"prompt": "[Verse 1:] In the depths of night. Where the dark consumes the light Echoes of lost dreams. Turn to haunting screams.\n\n[Pre-Chorus:] Rising from the ashes. With fire in our eyes. Breaking every chain. That binds our wasted lives.\n\n[Chorus:] We are the shadows of fury. Born from the ages of despair. Raging against the dying light. In the wake of endless night.\n\n[Verse 2:] Steel and thunder clash. A relentless, vengeful thrash. Marching through the storm. Hearts forever torn.\n",
"gpt_description_prompt": "Shadows of Fury",
"audio_prompt_id": "",
"history": null,
"concat_history": null,
"type": "gen",
"duration": 108.8,
"refund_credits": false,
"stream": true,
"error_type": null,
"error_message": null
},
"is_liked": false,
"is_handle_updated": false,
"is_trashed": false,
"reaction": null,
"created_at": "2024-04-18T14:29:31.760Z",
"status": "complete",
"title": "Fading Shadows",
"play_count": 0,
"upvote_count": 0,
"is_public": false
},
"91a284d4****************a22d78da7d8f": {
"id": "91a284d4****************a22d78da7d8f",
"video_url": "https://cdn1.suno.ai/91a284d4****************a22d78da7d8f.mp4",
"audio_url": "https://cdn1.suno.ai/91a284d4****************a22d78da7d8f.mp3",
"image_url": "https://cdn1.suno.ai/image_91a284d4****************a22d78da7d8f.png",
"image_large_url": "https://cdn1.suno.ai/image_large_91a284d4****************a22d78da7d8f.png",
"is_video_pending": false,
"major_model_version": "v3",
"model_name": "chirp-v3",
"metadata": {
"tags": "Rock Metal",
"prompt": "[Verse 1:] In the depths of night. Where the dark consumes the light Echoes of lost dreams. Turn to haunting screams.\n\n[Pre-Chorus:] Rising from the ashes. With fire in our eyes. Breaking every chain. That binds our wasted lives.\n\n[Chorus:] We are the shadows of fury. Born from the ages of despair. Raging against the dying light. In the wake of endless night.\n\n[Verse 2:] Steel and thunder clash. A relentless, vengeful thrash. Marching through the storm. Hearts forever torn.\n",
"gpt_description_prompt": "Shadows of Fury",
"audio_prompt_id": "",
"history": null,
"concat_history": null,
"type": "gen",
"duration": 103.2,
"refund_credits": false,
"stream": true,
"error_type": null,
"error_message": null
},
"is_liked": false,
"is_handle_updated": false,
"is_trashed": false,
"reaction": null,
"created_at": "2024-04-18T14:29:31.761Z",
"status": "complete",
"title": "Fading Shadows",
"play_count": 0,
"upvote_count": 0,
"is_public": false
}
}
},
"message": "success"
}
Modified at 15 days ago