GET
/v1/schemas/fal/audio/fal-ai%2Felevenlabs%2Ftts%2Fturbo-v2.5
Accept:
Request body
11 properties · 1 required · 0 $defs| property | type | description | constraints |
|---|---|---|---|
| text* | string | The text to convert to speech | length ≥ 1 |
| language_code | string | Language code (ISO 639-1) used to enforce a language for the model. An error will be returned if language code is not supported by the model. | nullable |
| speed | number | Speech speed (0.7-1.2). Values below 1.0 slow down the speech, above 1.0 speed it up. Extreme values may affect quality. | 0.7 ≤ n ≤ 1.2 · default: 1 |
| next_text | string | The text that comes after the text of the current request. Can be used to improve the speech's continuity when concatenating together multiple generations or to influence the speech's continuity in the current generation. | nullable |
| stability | number | Voice stability (0-1) | 0 ≤ n ≤ 1 · default: 0.5 |
| timestamps | boolean | Whether to return timestamps for each word in the generated speech | default: false |
| previous_text | string | The text that came before the text of the current request. Can be used to improve the speech's continuity when concatenating together multiple generations or to influence the speech's continuity in the current generation. | nullable |
| voice | string | The voice to use for speech generation | default: "Rachel" |
| similarity_boost | number | Similarity boost (0-1) | 0 ≤ n ≤ 1 · default: 0.75 |
| 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" |
| style | number | Style exaggeration (0-1) | 0 ≤ n ≤ 1 · default: 0 |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"fal-ai/elevenlabs/tts/turbo-v2.5","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}