DeerAPI 获取 vox 接口文档:通过 POST /suno/act/vox/ 调用 Suno 获取指定 clip_id 的 vox 数据,说明必填参数与 Content-Type,便于音乐生成集成。
curl --request POST \
--url https://api.deerapi.com/suno/act/vox/{clip_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"clip_id": "29e72f69-f535-4e17-8695-72fef7f167b9"
}
'{
"id": "<string>",
"source_clip_id": "<string>",
"status": "<string>",
"vocal_audio_url": "<string>",
"vocal_end_s": 123,
"vocal_start_s": 123,
"wave_response": {
"waveform_aggregates": [
{
"data": [
[
123
]
],
"mip_map_level": 123
}
]
}
}Bearer token authentication. Use your DeerAPI key.
curl --request POST \
--url https://api.deerapi.com/suno/act/vox/{clip_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"clip_id": "29e72f69-f535-4e17-8695-72fef7f167b9"
}
'{
"id": "<string>",
"source_clip_id": "<string>",
"status": "<string>",
"vocal_audio_url": "<string>",
"vocal_end_s": 123,
"vocal_start_s": 123,
"wave_response": {
"waveform_aggregates": [
{
"data": [
[
123
]
],
"mip_map_level": 123
}
]
}
}