Fetch a result
Fetch a result by ids, separated by comma. Be careful with the rate limit.
Query parameters
-
Seperate id by comma
GET
/suno/fetch
curl \
-X GET https://api.itsrose.rest/suno/fetch?ids=string
Response examples (200)
{
"status": true,
"message": "success",
"result": [
{
"id": "string",
"status": "string",
"created_at": "string",
"prompt_description": "string",
"output": {
"image_thumb": "string",
"audio": "string",
"video": "string"
},
"meta": {
"title": "",
"tags": "",
"model": "string",
"lyric": "",
"type": "gen",
"duration": 0
},
"error": {
"type": "string",
"message": "string"
}
}
]
}
Response examples (400)
{
"status": false,
"message": "string",
"result": {}
}
Response examples (401)
{
"status": false,
"message": "string",
"result": {}
}
Response examples (500)
{
"status": false,
"message": "string",
"result": {}
}