GET
/v1/schemas/fal/chat/openrouter%2Frouter%2Fvideo%2Fenterprise
Accept:
Request body
7 properties · 2 required · 0 $defs| property | type | description | constraints |
|---|---|---|---|
| prompt* | string | Prompt to be used for the video processing | |
| model* | string | Name of the model to use. Charged based on actual token usage. | |
| video_urls | string[] | List of URLs or data URIs of video files to process. Supported formats: mp4, mpeg, mov, webm. For Google Gemini on AI Studio, YouTube links are also supported. Mutually exclusive with video_url. | nullable |
| system_prompt | string | System prompt to provide context or instructions to the model | nullable |
| temperature | number | This setting influences the variety in the model's responses. Lower values lead to more predictable and typical responses, while higher values encourage more diverse and less common responses. At 0, the model always gives the same response for a given input. | 0 ≤ n ≤ 2 · default: 1 |
| reasoning | boolean | Should reasoning be the part of the final answer. | default: false |
| max_tokens | integer | This sets the upper limit for the number of tokens the model can generate in response. It won't produce more than this limit. The maximum value is the context length minus the prompt length. | n ≥ 1 · nullable |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"openrouter/router/video/enterprise","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}