GET
/v1/schemas/fal/video/fal-ai%2Ffast-svd%2Ftext-to-video
Accept:
Request body
9 properties · 1 required · 1 $defs| property | type | description | constraints |
|---|---|---|---|
| prompt* | string | The prompt to use as a starting point for the generation. | |
| motion_bucket_id | integer | The motion bucket id determines the motion of the generated video. The higher the number, the more motion there will be. | 1 ≤ n ≤ 255 · default: 127 |
| cond_aug | number | The conditoning augmentation determines the amount of noise that will be added to the conditioning frame. The higher the number, the more noise there will be, and the less the video will look like the initial image. Increase it for more motion. | 0 ≤ n ≤ 10 · default: 0.02 |
| deep_cache | enum | This parameter is deprecated and has no effect. It is kept for backwards compatibility. | none | minimum | medium | high · default: "none" · deprecated |
| video_size | ImageSize | enum | The size of the generated video. | default: "landscape_16_9" |
| fps | integer | The FPS of the generated video. The higher the number, the faster the video will play. Total video length is 25 frames. | 1 ≤ n ≤ 25 · default: 10 |
| steps | integer | The number of steps to run the model for. The higher the number the better the quality and longer it will take to generate. | 1 ≤ n ≤ 100 · default: 20 |
| negative_prompt | string | The negative prompt to use as a starting point for the generation. | default: "unrealistic, saturated, high co… |
| seed | integer | The same seed and the same prompt given to the same version of Stable Diffusion will output the same image every time. | nullable |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"fal-ai/fast-svd/text-to-video","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}