Inspect allowed passthrough parameters and send provider-specific video controls safely
Use this guide when you need to add video model controls that are not part of
OpenRouter’s normalized video schema.By the end, your implementation should inspect a model’s allowed passthrough
parameters and send one through provider.options.
An OpenRouter API key available as OPENROUTER_API_KEY only when you submit
the video job
A target video model for the provider-specific options you want to send
If you are not already targeting a specific provider model, read
Choose a Video Generation Model
so you can select one based on your clip duration, output shape, input type,
audio, provider controls, and cost requirements.
Use the API reference pages as the source of truth for exact fields:
Start by reading allowed_passthrough_parameters from the selected model. This
keeps provider-specific controls behind a model metadata check instead of
hard-coding unsupported request keys.Example metadata check:
const response = await fetch("https://openrouter.ai/api/v1/videos/models");if (!response.ok) { throw new Error(await response.text());}const { data } = await response.json();const models = data;const veo = models.find( (model) => model.id === "google/veo-3.1-lite",);if (!veo) { throw new Error("google/veo-3.1-lite was not found in the video model list.");}console.log(veo.allowed_passthrough_parameters);
For example, google/veo-3.1-lite may expose passthrough controls such as
negativePrompt, enhancePrompt, personGeneration, or conditioningScale.
OpenRouter lists supported parameter names; check the provider docs for valid
values when a parameter has an enum.Before submitting a paid job, assert that every passthrough key you plan to send
is allowed for the selected model:
Provider options are keyed by provider slug. Only the options for the matched
provider are forwarded. For the Google Vertex video endpoint, use the
google-vertex provider slug.Example request shape:
const apiKey = process.env.OPENROUTER_API_KEY;if (!apiKey) { throw new Error("Set OPENROUTER_API_KEY before submitting a video job.");}const response = await fetch("https://openrouter.ai/api/v1/videos", { method: "POST", headers: { Authorization: `Bearer ${apiKey}`, "Content-Type": "application/json", }, body: JSON.stringify({ model: "google/veo-3.1-lite", prompt: "A 4-second time-lapse of a white orchid blooming on a dark tabletop, macro lens, gentle studio light", duration: 4, resolution: "720p", aspect_ratio: "16:9", generate_audio: false, provider: { options: { "google-vertex": { parameters: providerParameters, }, }, }, }),});if (!response.ok) { throw new Error(await response.text());}console.log(await response.json());
The submit call returns the job fields immediately. In the QA run, the submitted
job later completed and downloaded with this final summary:
The metadata assertion should pass before you submit a job. If you submit the
request, it should return a video job. If the provider option is invalid for
the selected model, remove it or re-check the current
allowed_passthrough_parameters list. To verify the final output, poll the
returned polling_url until completed, then download the MP4.