GET

/v1/schemas/fal/audio/fal-ai%2Ftada%2F1b%2Ftext-to-speech

kind inputactivity audiohash 8c32c534extracted Jul 6, 2026version currentsource upstream spec ↗

Request body

13 properties · 2 required · 0 $defs
propertytypedescriptionconstraints
prompt*stringThe text to synthesize into speech using the reference speaker's voice.
audio_url*stringURL of the reference audio file for voice cloning. The model will replicate this speaker's voice characteristics.
languageenumLanguage for text alignment. Use the appropriate code for non-English synthesis.en | ar | ch | de | es | fr · +4 more · default: "en"
noise_temperaturenumberTemperature for noise in the flow matching diffusion process.0 ≤ n ≤ 2 · default: 0.9
temperaturenumberSampling temperature for text token generation. Must be greater than 0. Higher values produce more varied output.0 < n ≤ 2 · default: 0.6
top_pnumberTop-p (nucleus) sampling parameter for text generation.0 ≤ n ≤ 1 · default: 0.9
repetition_penaltynumberPenalty applied to repeated tokens during generation.1 ≤ n ≤ 2 · default: 1.1
speed_up_factornumberFactor to speed up or slow down the generated speech. Values > 1.0 speed up, < 1.0 slow down.0.5 ≤ n ≤ 2 · default: 1
output_formatenumThe format of the output audio file.wav | mp3 · default: "wav"
acoustic_cfg_scalenumberClassifier-free guidance scale for acoustic feature generation.0 ≤ n ≤ 10 · default: 1.6
num_inference_stepsintegerNumber of ODE solver steps for flow matching acoustic generation. More steps improve quality at the cost of speed.1 ≤ n ≤ 50 · default: 20
num_extra_stepsintegerNumber of extra autoregressive steps for speech continuation beyond the input text. Useful for generating trailing prosody or silence.0 ≤ n ≤ 50 · default: 0
transcriptstringTranscript of the reference audio. For non-English audio, providing a transcript is required since the built-in ASR is English-only.default: ""

Validate a payload

before you spend tokens
shell
$ curl -X POST https://modelschemas.com/v1/validate \
    -d '{"provider":"fal","endpointId":"fal-ai/tada/1b/text-to-speech","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}