Skip to Content
DocumentationModelsVideoKling 3.0 Motion Control

Kling 3.0 Motion Control

Use kling-3.0-motion-control to create video output. This page contains the complete request needed for this model.

Model facts

PropertyValue
Model IDkling-3.0-motion-control
EndpointPOST /api/v1/generation/create
OutputVideo
Modestext-to-video, image-to-video, video reference
PricingView current pricing 

Minimal request

curl -X POST https://api.api-stock.com/api/v1/generation/create \ -H "Authorization: Bearer $API_STOCK_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "kling-3.0-motion-control", "input": { "imageUrls": [ "https://example.com/input.jpg" ], "videoUrls": [ "https://example.com/input.mp4" ], "characterOrientation": "image", "prompt": "A dancer turns toward the camera" } }'

The create response contains a task ID:

{ "code": 200, "data": { "taskId": "019ca881-9503-7270-a560-f00fc2b15785", "status": "not_started", "createdAt": "2026-08-22T12:00:00.000Z" } }

Parameters

Parameters belong inside the top-level input object. Unknown fields are rejected.

ParameterTypeRequiredDefaultDescription
promptstringNoOptional scene prompt
imageUrlsstring[]YesReference image URL (exactly one). JPG/JPEG/PNG, max 10MB
videoUrlsstring[]YesReference video URL (exactly one). MP4/MOV, max 100MB
characterOrientation“image” | “video”YesCharacter orientation mode. Determines whose orientation drives the motion transfer
resolution“720p” | “1080p”No"720p"Output resolution

Constraints

  • characterOrientation: allowed: image, video.
  • resolution: allowed: 720p, 1080p.

Invalid types, unsupported enum values, out-of-range numbers, and missing required fields return HTTP 400 with error.code: "invalid_input". Correct the request rather than retrying it unchanged.

Result

Poll the task or provide a top-level webhook URL in the create request:

curl https://api.api-stock.com/api/v1/task/status/$TASK_ID \ -H "Authorization: Bearer $API_STOCK_KEY"

A successful media task returns one or more files:

{ "code": 200, "data": { "taskId": "019ca881-9503-7270-a560-f00fc2b15785", "status": "finished", "files": [ { "fileUrl": "https://storage.api-stock.com/result.mp4", "fileType": "video" } ], "createdTime": "2026-08-22T12:00:00.000Z" } }

See Tasks and webhooks for terminal statuses, retries and webhook delivery.