get task status
curl --request GET \
--url https://api.mountsea.ai/suno/v2/status \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.mountsea.ai/suno/v2/status"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.mountsea.ai/suno/v2/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mountsea.ai/suno/v2/status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.mountsea.ai/suno/v2/status"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.mountsea.ai/suno/v2/status")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mountsea.ai/suno/v2/status")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"taskId": "task_1731a9b2f4",
"status": "queued",
"createdAt": "2025-08-18T02:30:00.000Z",
"failReason": "Audio source not found.",
"failCode": 4001,
"data": {},
"finishAt": "2025-08-18T02:35:00.000Z"
}Suno
Get Task Status
Query the status and result of any async task
GET
/
suno
/
v2
/
status
get task status
curl --request GET \
--url https://api.mountsea.ai/suno/v2/status \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.mountsea.ai/suno/v2/status"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.mountsea.ai/suno/v2/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mountsea.ai/suno/v2/status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.mountsea.ai/suno/v2/status"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.mountsea.ai/suno/v2/status")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mountsea.ai/suno/v2/status")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"taskId": "task_1731a9b2f4",
"status": "queued",
"createdAt": "2025-08-18T02:30:00.000Z",
"failReason": "Audio source not found.",
"failCode": 4001,
"data": {},
"finishAt": "2025-08-18T02:35:00.000Z"
}All async endpoints (generate, lyrics, mashupLyrics, concat, remaster, mp4, wav, etc.) return a
taskId. Use this endpoint to poll the task until it reaches a terminal status (success, failed, or timeout).Task Status Values
| Status | Description |
|---|---|
ready | Task is queued, waiting to be processed |
running | Task is currently being processed |
stream | Task is streaming partial results |
success | Task completed successfully — check data for results |
failed | Task failed — check failReason and failCode |
timeout | Task timed out |
Polling Best Practices
Use exponential backoff when polling: start with 2-3 second intervals, then gradually increase. Music generation tasks typically take 30-120 seconds depending on the task type.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Task ID
Example:
"1212"
Response
200 - application/json
The task status information
Task id.
Example:
"task_1731a9b2f4"
task status
Available options:
queued, ready, running, stream, awaiting, success, failed, timeout Task created time (UTC).
Example:
"2025-08-18T02:30:00.000Z"
Failure reason when status=FAILED.
Example:
"Audio source not found."
Failure code when status=FAILED.
Example:
4001
Data associated with the task.
Task finished time (UTC).
Example:
"2025-08-18T02:35:00.000Z"