REST API

Audio Mastering API

Integrate AI-powered audio mastering directly into your application, DAW plugin, distribution platform, or CI/CD pipeline.

Endpoints

POST
/api/v1/jobs/master route="full"

Full pipeline: analyze + deliberate + master. Returns mastered WAV.

POST
/api/v1/jobs/master route="analyze_only"

BS.1770-4 analysis only. Returns JSON metrics.

POST
/api/v1/jobs/master route="deliberation_only"

Analysis + AI deliberation. Returns JSON with parameters.

POST
/api/v1/jobs/master route="dsp_only"

Mastering with manual parameters. Returns mastered WAV.

Quick Example

cURL
curl -X POST https://concertmaster.aimastering.tech/api/v1/jobs/master \
  -H "X-Api-Key: your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "audio_url": "https://storage.example.com/track.wav",
    "route": "full",
    "target_lufs": -14.0,
    "target_true_peak": -1.0
  }' \
  -o mastered.wav