Pass extra parameters to underlying video providers when standard fields are not enough.
Not yet available. Per-provider video options are tracked to be built — today, POST /v1/videos accepts
model,prompt, andseconds.
Each video generation model is backed by a specific provider with its own set of advanced parameters — frame rate, aspect ratio, style presets, camera controls, and more. The shipped OpenDunes video API exposes the standard fields that work across all models: model, prompt, and seconds. A pass-through for provider-specific options is part of the intended design, not the current API.
Any other field on the request is not part of the API today.
extra pass-through#The intended design adds an extra object forwarded to the underlying provider, for options such as:
aspect_ratio — e.g. "16:9", "9:16", "1:1"fps — frames per second; higher is smoother but a larger filestyle — high-level visual preset (cinematic, animation, …)camera_motion — autonomous camera movement when none is in the promptenhance_prompt — provider-side prompt expansion on or offNone of these are accepted today; sending them does nothing useful.
Provider-specific options are, by nature, not portable between models: when the pass-through ships, an option that works on one model may not exist or may behave differently on another. The standard fields (model, prompt, seconds) are the portable core.