GET
/v1/schemas/fal/image/fal-ai%2Ffilm
Accept:
Request body
11 properties · 2 required · 0 $defs| property | type | description | constraints |
|---|---|---|---|
| start_image_url* | string | The URL of the first image to use as the starting point for interpolation. | |
| end_image_url* | string | The URL of the second image to use as the ending point for interpolation. | |
| num_frames | integer | The number of frames to generate between the input images. | 1 ≤ n ≤ 64 · default: 1 |
| include_start | boolean | Whether to include the start image in the output. | default: false |
| video_quality | enum | The quality of the output video. Only applicable if output_type is 'video'. | low | medium | high | maximum · default: "high" |
| video_write_mode | enum | The write mode of the output video. Only applicable if output_type is 'video'. | fast | balanced | small · default: "balanced" |
| fps | integer | Frames per second for the output video. Only applicable if output_type is 'video'. | 1 ≤ n ≤ 60 · default: 8 |
| image_format | enum | The format of the output images. Only applicable if output_type is 'images'. | png | jpeg · default: "jpeg" |
| include_end | boolean | Whether to include the end image in the output. | default: false |
| output_type | enum | The type of output to generate; either individual images or a video. | images | video · default: "images" |
| 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/film","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}