GET
/v1/schemas/fal/video/fal-ai%2Fcosmos-predict-2.5%2Fvideo-to-video
Accept:
Request body
10 properties · 2 required · 0 $defs| property | type | description | constraints |
|---|---|---|---|
| video_url* | string | URL of the input video to use as conditioning. | |
| prompt* | string | The text prompt describing the video to generate. | |
| seed | integer | Random seed for reproducible generation. | nullable |
| video_quality | enum | The quality of the output video. | low | medium | high | maximum · default: "high" |
| negative_prompt | string | A negative prompt to guide generation away from undesired content. | default: "The video captures a series of … |
| guidance_scale | number | Classifier-free guidance scale. Higher values increase prompt adherence. | 1 ≤ n ≤ 20 · default: 7 |
| video_output_type | enum | The format of the output video. | X264 (.mp4) | VP9 (.webm) | PRORES4444 (.mov) | GIF (.gif) · default: "X264 (.mp4)" |
| num_inference_steps | integer | Number of denoising steps. More steps yield higher quality but take longer. | 1 ≤ n ≤ 50 · default: 35 |
| num_frames | integer | Number of frames to generate. Must be between 9 and 93. | 9 ≤ n ≤ 93 · default: 93 |
| 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/cosmos-predict-2.5/video-to-video","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}