Skip to main content

Endpoint

POST /api/v1/music/remaster
Asynchronous. Returns a task_id. Poll Get Task for results. Reprocesses an existing clip through the AI to enhance audio quality, clarity, and mastering.

Request body

FieldTypeRequiredDescription
clip_idstringYesClip ID of the track to remaster.
mvstringNoModel version override.
callback_urlstringNoWebhook URL for completion notification. See Webhooks.
retention_daysintegerNoDays to retain audio files. Default 7.

Response

{
  "code": 0,
  "message": "ok",
  "request_id": "req-1710000000000",
  "data": {
    "task_id": "64f3a1b2c8d9e0f1a2b3c4d5",
    "status": "queuing"
  }
}

Example

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"
  }'