curl --request POST \
--url https://api.vidgo.ai/api/generate/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "kwaivgi/kling-v3-turbo-std/image-to-video",
"input": {
"image_urls": [
"https://example.com/image.png"
],
"duration": 5
}
}
'{
"code": 200,
"data": {
"task_id": "task-unified-example",
"status": "running",
"created_time": "2026-09-10T08:00:00"
}
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}"Request timeout"{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}Kling
Kling 3.0 Turbo Standard Image to Video
Bring reference images into motion with Kling 3.0 Turbo Standard, using text and shot prompts to guide a video sequence.
POST
/
api
/
generate
/
submit
curl --request POST \
--url https://api.vidgo.ai/api/generate/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "kwaivgi/kling-v3-turbo-std/image-to-video",
"input": {
"image_urls": [
"https://example.com/image.png"
],
"duration": 5
}
}
'{
"code": 200,
"data": {
"task_id": "task-unified-example",
"status": "running",
"created_time": "2026-09-10T08:00:00"
}
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}"Request timeout"{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}- Submit the request with
VIDGO_API_KEY. Atask_idis returned immediately. Keep it until the task reachesfinishedorfailed. - Use Query Task Status to retrieve the result. If you provide a
callback_url, Vidgo sends the result to your webhook when the task finishes or fails.
Kling 3.0 Turbo Standard Image to Video
Bring reference images into motion with Kling 3.0 Turbo Standard, using text and shot prompts to guide a video sequence.Available Models
- kwaivgi/kling-v3-turbo-std/image-to-video - Generate video from image input.
Duration Options
- 3-15 seconds - Accepted range for an explicit
duration. Withoutmulti_prompt, the default is 5 seconds. - Multi-shot output - Each shot accepts
1-15seconds and defaults to5. The total must not exceed 15 seconds. - With
multi_prompt, omitdurationto use the shot total, including totals of 1 or 2 seconds. If supplied,durationmust equal the shot total and remain within3-15seconds.
Key Features
- Animate a single reference image.
- Direct one scene with
prompt, or usemulti_promptfor up to six shots. - The input image determines the output aspect ratio.
Advanced Parameters
Setmodel and optional callback_url at the request root. Place the parameters below inside input.
Send only the input fields supported by this workflow. Unsupported input fields are rejected before credits are deducted. Input URLs must use HTTP(S), include a hostname, and contain no embedded credentials.
Prompt
promptis optional and supports up to 2,500 characters. Blank optional prompts are treated as omitted.- Use either
promptormulti_prompt; do not combine them.
Image URLs
image_urls: Required. Provide exactly 1 image URL.- Images must be publicly accessible and directly downloadable.
Multi-Prompt
multi_promptaccepts 1-6 shot objects and cannot be combined withprompt.- Each shot requires a nonblank
promptof at most 2,500 characters. - Each shot can include an integer
durationfrom 1 to 15 seconds; the default is 5 seconds. - The combined shot duration must not exceed 15 seconds. See Duration Options for the top-level
durationrules.
Aspect Ratio
- The output aspect ratio follows the input image.
aspect_ratiois ignored by this endpoint and can be omitted.
Pricing
Withmulti_prompt, billing uses the combined shot duration. Otherwise, it uses the requested duration or its default.
Check the Vidgo dashboard for the current rate.
Credits are deducted on submission and refunded if the task fails.Authorizations
Use VIDGO_API_KEY.
Body
application/json
Keep model and callback_url at the root. Unknown root fields are ignored; unsupported input fields are rejected.
Vidgo public model ID. Must be kwaivgi/kling-v3-turbo-std/image-to-video.
Available options:
kwaivgi/kling-v3-turbo-std/image-to-video Example:
"kwaivgi/kling-v3-turbo-std/image-to-video"
Show child attributes
Show child attributes
Optional public HTTP(S) endpoint for task completion notifications. HTTPS is recommended. Omit, use null, or use an empty string to disable callbacks.