Voice Cleaner API
Clean speech, reduce noise, and optionally reduce room reverb from a public audio URL.
Voice Cleaner API
Use audio-voice-clean for speech cleanup before publishing, transcription,
voiceover preparation, or downstream editing.
Endpoint
POST /api/v1/audio/generationsPoll completion with:
GET /api/v1/tasks/{id}Example
curl https://reapi.ai/api/v1/audio/generations \
-H "Authorization: Bearer $REAPI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "audio-voice-clean",
"audio_url": "https://cdn.example.com/podcast.wav",
"noise_cancelling_level": 1,
"encoder_format": "mp3"
}'Parameters
| Field | Type | Required | Notes |
|---|---|---|---|
model | string | yes | Use audio-voice-clean. |
audio_url | URL | yes | Public HTTP(S) source audio URL. |
noise_cancelling_level | integer | no | 0, 1, or 2. Defaults to 0. |
splitter | enum | no | auto, andromeda, perseus, orion, phoenix, lyra, or lynx. auto is omitted upstream so the default engine is used. |
dereverb_enabled | boolean | no | Enable dereverb cleanup. |
encoder_format | enum | no | mp3, wav, flac, aac, or ogg. |
Output
Completed tasks return output.audio_urls and, when available, labeled
output.tracks.
Audio jobs are billed at 200 credits ($0.20) per rounded-up source minute.
reAPI Docs