GET
/v1/schemas/fal/audio/fal-ai%2Ff5-tts
Accept:
Request body
5 properties · 3 required · 0 $defs| property | type | description | constraints |
|---|---|---|---|
| ref_audio_url* | string | The URL of the reference audio file. | |
| model_type* | enum | The name of the model to be used for TTS. | F5-TTS | E2-TTS |
| gen_text* | string | The text to be converted to speech. Maximum 5000 characters. | |
| ref_text | string | The reference text to be used for TTS. If not provided, an ASR (Automatic Speech Recognition) model will be used to generate the reference text. | default: "" |
| remove_silence | boolean | Whether to remove the silence from the audio file. | default: true |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"fal-ai/f5-tts","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}