Seedance 2.5 is live — 30-second cinematic video with native audio & real-person references
rreAPI Docs

Voice Changer API

Convert source vocals with a configured voice pack using the async reAPI audio endpoint.

Voice Changer API

Use audio-voice-change to convert vocals with a configured voice pack.

Endpoint

POST /api/v1/audio/generations

Poll 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-change",
    "audio_url": "https://cdn.example.com/source-vocal.wav",
    "voice_pack_id": "voice_pack_id_here",
    "accent": 1,
    "encoder_format": "mp3"
  }'

Parameters

FieldTypeRequiredNotes
modelstringyesUse audio-voice-change.
audio_urlURLyesPublic HTTP(S) source vocal URL.
voice_pack_idstringyesTarget voice pack id.
accentnumberno0 to 1. Defaults to 1.
tonality_referenceenumnosource_file or voice_pack. Defaults to source_file.
dereverb_enabledbooleannoEnable dereverb cleanup.
encoder_formatenumnomp3, wav, flac, aac, or ogg.

Output

Completed tasks return output.audio_urls and, when available, labeled output.tracks.

Audio jobs are billed per rounded-up source minute. See current rate on the Voice Changer model page.

Table of Contents