Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve details of a specific music result by ID
POST /api/v1/music/{id}
id
results[].id
{ "code": 0, "message": "ok", "request_id": "req-1710000000000", "data": { "id": "clip-abc123", "audio_url": "https://cdn.example.com/tob/gen/abc123.mp3", "image_url": "https://cdn.example.com/tob/gen/abc123.jpg", "title": "My Track", "duration": 87.4, "tags": "pop upbeat", "prompt": "An upbeat pop track", "expire_at": 1710604800000 } }
clip_id
audio_url
image_url
title
duration
tags
prompt
expire_at
0
{ "code": 4005, "message": "Music result has expired", "request_id": "req-1710000000000" }
curl -X POST https://api.example.com/api/v1/music/clip-abc123 \ -H "Authorization: Bearer sk-mm-your-key" \ -H "Content-Type: application/json" \ -d '{}'