curl --request POST \
--url https://api.vidgo.ai/api/generate/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "kwaivgi/kling-v2.5-turbo-pro/image-to-video",
"input": {
"prompt": "A slow camera pan across a sunlit garden.",
"duration": 5,
"start_image_url": "https://example.com/start-frame.png"
}
}
'{
"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 2.5 Turbo Pro Image to Video
Generate video with Kling 2.5 Turbo Pro using a start frame, an end frame, or both, plus a text prompt.
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-v2.5-turbo-pro/image-to-video",
"input": {
"prompt": "A slow camera pan across a sunlit garden.",
"duration": 5,
"start_image_url": "https://example.com/start-frame.png"
}
}
'{
"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 2.5 Turbo Pro Image to Video
Generate video with Kling 2.5 Turbo Pro using a start frame, an end frame, or both, plus a text prompt.Available Models
- kwaivgi/kling-v2.5-turbo-pro/image-to-video - Generate video from image input.
Duration Options
- 5, 10 seconds - Set
durationas an integer. Optional. Default: 5 seconds. Strings, booleans, fractional durations, andnullare rejected.
Key Features
- Generate video from image input.
- Guide generation with
start_image_url,end_image_url, or both.
Advanced Parameters
Setmodel and optional callback_url at the request root. Place all workflow parameters, including output options, 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 or whitespace. Image fields do not accept arrays or Base64.
Prompt
prompt: Required. Describe the scene and desired motion. Length: 1-2,500 characters.- Supply a string, not a number, boolean, array, or object. Whitespace is trimmed before the 2,500 Unicode character limit is checked.
Start Image URL
start_image_url: First-frame public HTTP(S) URL. Required only whenend_image_urlis omitted.
End Image URL
end_image_url: Last-frame public HTTP(S) URL. Required only whenstart_image_urlis omitted.- Provide at least one frame: start only, end only, or both. Omit unused URL fields; empty strings and
nullare rejected.
Aspect Ratio
aspect_ratio: Optional string. PoYo does not document an enum or default. Omit when unused.
Negative Prompt
negative_prompt: Optional. Describe content to avoid.
Billing Factors
Billing depends on video duration (duration). Text-to-video and image-to-video use the same rates.
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.
Example:
"kwaivgi/kling-v2.5-turbo-pro/image-to-video"
- Option 1
- Option 2
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.