注册

获取wav

GET https://api.quickrouter.ai/suno/act/wav/{clip_id} 在线调试 →
Authorization

在 Header 添加参数 Authorization,其值为 Bearer 之后拼接 Token

示例: Authorization: Bearer ********************

请求参数

Path 参数
clip_id string
必需
示例: 9c4f48f1-c0d2-44eb-bf9c-e34d559b374c

请求示例代码

curl --location --request GET 'https://api.quickrouter.ai/suno/act/wav/9c4f48f1-c0d2-44eb-bf9c-e34d559b374c' \
--header 'Authorization: Bearer YOUR_API_KEY'
var myHeaders = new Headers();
myHeaders.append("Authorization", "Bearer YOUR_API_KEY");

var requestOptions = {
   method: 'GET',
   headers: myHeaders,
   redirect: 'follow'
};

fetch("https://api.quickrouter.ai/suno/act/wav/9c4f48f1-c0d2-44eb-bf9c-e34d559b374c", requestOptions)
   .then(response => response.text())
   .then(result => console.log(result))
   .catch(error => console.log('error', error));
import http.client

conn = http.client.HTTPSConnection("api.quickrouter.ai")
headers = {
   'Authorization': 'Bearer YOUR_API_KEY'
}
conn.request("GET", "/suno/act/wav/9c4f48f1-c0d2-44eb-bf9c-e34d559b374c", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))

返回响应

响应参数 🟢 200 OK · application/json
code string
必需
data string
必需
message string
必需
示例
{
    "code": "success",
    "data": "47443cc1-4902-42ae-ae7f-72a9900544e9",
    "message": ""
}