- 🎛️ Match tone, loudness, and clarity
- 🎵 Supports formats like MP3, WAV, FLAC, and more
- 🚀 Quick, accurate mastering with webhook support
Endpoint
Sample Output
Listen to the mastered audio:Try it Yourself
Visit the Audio Mastering Endpoint Explorer to upload an audio and reference track for instant mastering.Tip: Use a professionally mastered song as your reference for best results!
Request Parameters
Parameter | Type | Required | Description |
---|---|---|---|
audio_path | String | Yes | URL path of the input audio file to be mastered |
conversion_id | String | Yes | Unique identifier for this conversion request |
reference_audio_path | String | Yes | URL path of the reference audio file to match |
output_extension | String | Optional | Desired output format (mp3 , wav , flac , ogg , aac , webm ) |
audio_duration | Float | Yes | Duration of input audio in seconds (for credit calculation) |
webhook_url | String | Optional | URL to receive callback notification when processing completes |
user_id | String | Optional | User ID for tracking (from authentication token) |
Sample Request
Python
Sample Response
Success (200 OK)
Webhook Response
If awebhook_url
is provided, you will receive the following once processing completes:
📂 If no webhook is provided, you can fetch the final mastered audio manually later using the conversion_id
.
Payload and Request Formation
Authorizations
Body
multipart/form-data
URL of the input audio to be processed.
Example:
"https://example.com/input_audio.mp3"
URL of the reference audio file to match.
Example:
"https://example.com/reference_track.wav"
Input audio URL path (deprecated: use audio_url
instead).
Example:
"https://example.com/input_audio.mp3"
Input audio file to upload directly.
Reference audio URL path (deprecated: use reference_audio_url
instead).
Example:
"https://example.com/reference_track.wav"
Reference audio file to upload directly.
Desired output file format.
Available options:
mp3
, wav
, flac
, ogg
, aac
, webm
Example:
"wav"
Callback URL to receive async result.
Example:
"http://your-webhook-url.com/callback"