Models
Kling 2.6 API
Generate videos with dialogue and lip-sync using Kling 2.6
Kling 2.6
Generate 5-10 second videos with synchronized audio-visual generation. Kling 2.6 features precise control over dialogue, lip-sync, tone, and sound effects. Ideal for talking head videos and character animations.
Try it now: Use the Kling AI Generator to create videos with dialogue and lip-sync.
Pricing
| Variant | Credits | Price (Pro Yearly) | Price (Pro Monthly) |
|---|---|---|---|
| 5s (no audio) | 60 | $0.36 | $0.72 |
| 10s (no audio) | 120 | $0.72 | $1.44 |
| 5s + audio | 120 | $0.72 | $1.44 |
| 10s + audio | 240 | $1.44 | $2.88 |
Credits are deducted only on successful generation.
Endpoint
POST https://vicsee.com/api/v1/generateSee Authentication for API key setup.
Text to Video
Generate videos from text descriptions with optional audio.
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| model | string | Yes | kling-2.6 |
| prompt | string | Yes | Description of the video to generate |
| options.duration | number | No | 5 or 10 seconds (default: 5) |
| options.aspectRatio | string | No | 16:9, 9:16, or 1:1 (default: 16:9) |
| options.sound | boolean | No | Enable audio generation (default: false) |
Example Request (No Audio)
curl -X POST https://vicsee.com/api/v1/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "kling-2.6",
"prompt": "A news anchor delivering a report in a professional studio",
"options": {
"duration": 5,
"aspectRatio": "16:9",
"sound": false
}
}'Example Request (With Audio)
curl -X POST https://vicsee.com/api/v1/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "kling-2.6",
"prompt": "A person saying Welcome to our channel with a friendly smile and wave",
"options": {
"duration": 5,
"aspectRatio": "16:9",
"sound": true
}
}'Image to Video
Animate a portrait or character image with dialogue and lip-sync.
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| model | string | Yes | kling-2.6-image-to-video |
| prompt | string | Yes | Description of the animation/dialogue |
| options.image | string | Yes | URL of the starting image |
| options.duration | number | No | 5 or 10 seconds (default: 5) |
| options.aspectRatio | string | No | 16:9, 9:16, or 1:1 |
| options.sound | boolean | No | Enable audio generation (default: false) |
Example Request
curl -X POST https://vicsee.com/api/v1/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "kling-2.6-image-to-video",
"prompt": "The person turns, smiles, and says Hello, nice to meet you",
"options": {
"image": "https://example.com/portrait.jpg",
"duration": 5,
"sound": true
}
}'Response
Success (200)
{
"taskId": "task_abc123xyz",
"status": "pending",
"model": "kling-2.6",
"createdAt": "2025-12-29T12:00:00Z"
}Poll for completion using Tasks API.
Task Complete
{
"taskId": "task_abc123xyz",
"status": "completed",
"output": {
"url": "https://cdn.vicsee.com/outputs/video_xyz.mp4",
"duration": 5,
"format": "mp4",
"hasAudio": true
}
}