Endpoint
task_id. Poll Get Task for results.
Reprocesses an existing clip through the AI to enhance audio quality, clarity, and mastering.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Remaster an existing clip with improved audio quality
POST /api/v1/music/remaster
task_id. Poll Get Task for results.
Reprocesses an existing clip through the AI to enhance audio quality, clarity, and mastering.
| Field | Type | Required | Description |
|---|---|---|---|
clip_id | string | Yes | Clip ID of the track to remaster. |
mv | string | No | Model version override. |
callback_url | string | No | Webhook URL for completion notification. See Webhooks. |
retention_days | integer | No | Days to retain audio files. Default 7. |
{
"code": 0,
"message": "ok",
"request_id": "req-1710000000000",
"data": {
"task_id": "64f3a1b2c8d9e0f1a2b3c4d5",
"status": "queuing"
}
}
curl -X POST https://api.example.com/api/v1/music/remaster \
-H "Authorization: Bearer sk-mm-your-key" \
-H "Content-Type: application/json" \
-d '{
"clip_id": "abc123def456"
}'