GET
/v1/schemas/fal/video/fal-ai%2Flongcat-video%2Fdistilled%2Ftext-to-video%2F720p
Accept:
Request body
13 properties · 1 required · 0 $defs| property | type | description | constraints |
|---|---|---|---|
| prompt* | string | The prompt to guide the video generation. | |
| num_inference_steps | integer | The number of inference steps to use. | 2 ≤ n ≤ 16 · default: 12 |
| aspect_ratio | enum | The aspect ratio of the generated video. | 16:9 | 9:16 | 1:1 · default: "16:9" |
| fps | integer | The frame rate of the generated video. | 1 ≤ n ≤ 60 · default: 30 |
| enable_safety_checker | boolean | Whether to enable safety checker. | default: true |
| seed | integer | The seed for the random number generator. | nullable |
| num_refine_inference_steps | integer | The number of inference steps to use for refinement. | 2 ≤ n ≤ 16 · default: 12 |
| num_frames | integer | The number of frames to generate. | 17 ≤ n ≤ 961 · default: 162 |
| enable_prompt_expansion | boolean | Whether to enable prompt expansion. | default: false |
| video_output_type | enum | The output type of the generated video. | X264 (.mp4) | VP9 (.webm) | PRORES4444 (.mov) | GIF (.gif) · default: "X264 (.mp4)" |
| video_quality | enum | The quality of the generated video. | low | medium | high | maximum · default: "high" |
| video_write_mode | enum | The write mode of the generated video. | fast | balanced | small · default: "balanced" |
| sync_mode | boolean | If `True`, the media will be returned as a data URI and the output data won't be available in the request history. | default: false |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"fal-ai/longcat-video/distilled/text-to-video/720p","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}