Skip to main content
GET
/
suno
/
v2
/
status
get task status
curl --request GET \
  --url https://api.mountsea.ai/suno/v2/status \
  --header 'Authorization: Bearer <token>'
{
  "taskId": "task_1731a9b2f4",
  "status": "ready",
  "createdAt": "2025-08-18T02:30:00.000Z",
  "failReason": "Audio source not found.",
  "failCode": 4001,
  "data": {},
  "finishAt": "2025-08-18T02:35:00.000Z"
}

get task result

get task result

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

taskId
string
required

Task ID

Example:

"1212"

Response

200 - application/json

The task status information

taskId
string
required

Task id.

Example:

"task_1731a9b2f4"

status
enum<string>
required

task status

Available options:
ready,
running,
stream,
success,
failed,
timeout
createdAt
string<date-time>
required

Task created time (UTC).

Example:

"2025-08-18T02:30:00.000Z"

failReason
string

Failure reason when status=FAILED.

Example:

"Audio source not found."

failCode
number

Failure code when status=FAILED.

Example:

4001

data
object

Data associated with the task.

finishAt
string<date-time>

Task finished time (UTC).

Example:

"2025-08-18T02:35:00.000Z"