MP3 / WAV / AAC / OGG
Default auto
Optional
mp3, wav, flac, aac, or ogg
What you can build
Real workflows powered by this model.

Music extractor API for creator clips
Use the music extractor API when a clip combines speech, music, and room sound. Your app can keep the music stem for editing, cataloging, moderation, or reuse. The music extractor API works well for products that need the bed, not just a vocal split. It gives creator tools a clean way to save the soundtrack without asking users to export from an editor. The music extractor API is also useful when support teams need a repeatable backend job instead of manual audio cleanup.
Extract music
Music extractor API for clean edit assets
Editors often need the bed without rebuilding the whole timeline. The music extractor API gives your workflow a downloadable music track and a no_music remainder from the same source. That pair lets a review tool compare the original mix against the extracted music bed. Teams can preview both outputs before approving a clip, archiving a sound bed, or sending the result to another workflow.

Batch-friendly music extractor API queues
Submit the music extractor API task, store the task id, and poll later. That flow works for creator tools, media archives, and review systems that process many clips at once. Each completed task returns URLs your app can store, preview, or hand to another service. The music extractor API lets backend queues process long clip libraries without keeping a browser tab open.
Pricing
Credit-based — 1 credit = $0.001 USD. Pay only for completed generations.
| Mode | Category | Unit | Price |
|---|---|---|---|
| Music extraction | |||
| Source audio | 1 started minute | $0.2 200 credits | |
Why reAPI
Why this music extractor API uses one surface
The music extractor API submits the music model directly instead of asking users to choose a generic stem. That keeps the page, playground, and docs aligned with one job. Less choice here is intentional because the user already came to extract music.
Music plus remainder
Completed tasks can return a music stem and a no_music track. Your app can save both, preview both, or send either output into the next step. Keep both files when users may later need the original speech without the bed or the bed without the speech. The music extractor API makes that pair available from one task.
Music extractor API output you can reuse
Send an audio_url and keep binary uploads out of your backend request body. The music extractor API handles processing asynchronously and returns downloadable output URLs. Your product can save those URLs with the task record or move them into its own storage after completion.
Integrate the music extractor API in three steps
- step 01
Create an API key
Generate a reAPI key from workspace settings. Use it to call /api/v1/audio/generations from your backend.
Open - step 02
Submit a music extraction task
POST model audio-music-extractor with a public audio_url. Add encoder_format when your product needs a specific output container.
Open - step 03
Poll and store the tracks
GET /api/v1/tasks/:id until completed. Save output.audio_urls or use output.tracks to map the music and no_music files.
Open
Frequently asked questions
Common questions about this model.
curl https://reapi.ai/api/v1/audio/generations \
-H "Authorization: Bearer $REAPI_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"audio-music-extractor","audio_url":"https://cdn.example.com/mix.wav","encoder_format":"mp3"}'Ready to ship?
Try it in the playground or grab an API key to integrate now.