GET
/v1/schemas/fal/video/fal-ai%2Ffast-svd-lcm%2Ftext-to-video
Accept:
Request body
7 properties · 1 required · 1 $defs| property | type | description | constraints |
|---|---|---|---|
| prompt* | string | The prompt to use as a starting point for the generation. | |
| 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 ≤ 20 · default: 4 |
| video_size | ImageSize | enum | The size of the generated video. | default: "landscape_16_9" |
| 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 |
| 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 |
| 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 |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"fal-ai/fast-svd-lcm/text-to-video","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}