GET
/v1/schemas/fal/audio/fal-ai%2Felevenlabs%2Ftts%2Feleven-v3
Accept:
Request body
6 properties · 1 required · 0 $defs| property | type | description | constraints |
|---|---|---|---|
| text* | string | The text to convert to speech | length ≥ 1 · length ≤ 5000 |
| timestamps | boolean | Whether to return timestamps for each word in the generated speech | default: false |
| language_code | string | Language code (ISO 639-1) used to enforce a language for the model. | nullable |
| stability | number | Voice stability (0-1) | 0 ≤ n ≤ 1 · default: 0.5 |
| voice | string | The voice to use for speech generation | default: "Rachel" |
| apply_text_normalization | enum | This parameter controls text normalization with three modes: 'auto', 'on', and 'off'. When set to 'auto', the system will automatically decide whether to apply text normalization (e.g., spelling out numbers). With 'on', text normalization will always be applie… | auto | on | off · default: "auto" |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"fal-ai/elevenlabs/tts/eleven-v3","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}