GET
/v1/schemas/fal/audio/fal-ai%2Felevenlabs%2Ftext-to-dialogue%2Feleven-v3
Accept:
Request body
6 properties · 1 required · 2 $defs| property | type | description | constraints |
|---|---|---|---|
| inputs* | DialogueBlock[] | A list of dialogue inputs, each containing text and a voice ID which will be converted into speech. | |
| pronunciation_dictionary_locators | PronunciationDictionaryLocator[] | A list of pronunciation dictionary locators (id, version_id) to be applied to the text. They will be applied in order. You may have up to 3 locators per request | default: [] |
| 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 |
| seed | integer | Random seed for reproducibility. | nullable |
| use_speaker_boost | boolean | This setting boosts the similarity to the original speaker. Using this setting requires a slightly higher computational load, which in turn increases latency. | nullable |
| stability | number | Determines how stable the voice is and the randomness between each generation. Lower values introduce broader emotional range for the voice. Higher values can result in a monotonous voice with limited emotion. Must be one of 0.0, 0.5, 1.0, else it will be rounded to the nearest value. | 0 ≤ n ≤ 1 · nullable |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"fal-ai/elevenlabs/text-to-dialogue/eleven-v3","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}