Skip to main content

Try Kling O3 Pro: Image-to-Video in the Workbench

Run this model interactively, tune parameters, and compare outputs.
Model ID: kling-video-o3-pro-image-to-video The Kling Video O3 Pro series specializes in image-to-video generation, transforming a single input image into dynamic video sequences guided by textual descriptions of motion and action. It supports customizable duration (1-10 seconds), aspect ratios (16:9, 9:16, 1:1), motion strength, and advanced inference parameters like guidance scale and number of steps for fine-tuned control over output quality and style. Ideal for creating realistic animations, product demos, and creative video content from static visuals.

Example request

Use the Workbench as a request builder: configure parameters for this model in the UI, then open the API tab to copy the exact cURL or Python call.
This blocks until the video is ready (typically 5-15 minutes). Prefer Async or Async with SSE for anything beyond quick experimentation.See the video generation reference for more details.
curl -X POST https://hub.oxen.ai/api/ai/videos/generate \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OXEN_API_KEY" \
  -d '{
  "model": "kling-video-o3-pro-image-to-video",
  "prompt": "<prompt>",
  "input_image": "https://hub.oxen.ai/api/repos/elau/assets/file/main/bloxy/bloxy_cropped_512x512.png"
}'

Fetch model details

The models endpoint returns the full model object, including its json_request_schema.
curl -H "Authorization: Bearer $OXEN_API_KEY" https://hub.oxen.ai/api/ai/models/kling-video-o3-pro-image-to-video

Request parameters

Required parameters

FieldTypeDefaultDescription
promptstringText prompt describing the motion or action for the video
input_imagestringStart frame to generate the video from. Format: uri.

Optional parameters

FieldTypeDefaultDescription
tail_image_urlstringFrame to end the generation on. Format: uri.
durationinteger5Length of this shot in seconds. Range: 1 – 15.
aspect_ratiostring"16:9"Aspect ratio of the generated video One of: 16:9, 9:16, 1:1.