GET
/v1/schemas/fal/audio/fal-ai%2Fminimax%2Fvoice-clone
Accept:
Request body
6 properties · 1 required · 0 $defs| property | type | description | constraints |
|---|---|---|---|
| audio_url* | string | URL of the input audio file for voice cloning. Should be at least 10 seconds long. To retain the voice permanently, use it with a TTS (text-to-speech) endpoint at least once within 7 days. Otherwise, it will be automatically deleted. | |
| noise_reduction | boolean | Enable noise reduction for the cloned voice | default: false |
| model | enum | TTS model to use for preview. Options: speech-02-hd, speech-02-turbo, speech-01-hd, speech-01-turbo | speech-02-hd | speech-02-turbo | speech-01-hd | speech-01-turbo · default: "speech-02-hd" |
| text | string | Text to generate a TTS preview with the cloned voice (optional) | length ≤ 1000 · nullable |
| need_volume_normalization | boolean | Enable volume normalization for the cloned voice | default: false |
| accuracy | number | Text validation accuracy threshold (0-1) | 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/minimax/voice-clone","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}