Overview
Kling 3.0 Turbo is a fast Kuaishou video generation model on APIXO for short clips from text prompts or a single reference image. Use it when you want the Kling 3.0 family with a simpler surface than Kling 3.0 Std.| Capability | Value |
|---|---|
| Model ID | kling-3-0-turbo |
| Modes | text-to-video, image-to-video |
| Prompt | Required in both modes |
| Resolution | 720p, 1080p |
| Duration | 3-15 seconds |
| Aspect ratios | 16:9, 9:16, 1:1 for text-to-video |
| Reference images | image-to-video: exactly 1 image URL |
| Output | Video URLs in resultJson.resultUrls |
Endpoint and authentication
Base URL:| Method | Endpoint | Purpose |
|---|---|---|
POST | /generateTask/kling-3-0-turbo | Submit a generation task |
GET | /statusTask/kling-3-0-turbo?taskId={taskId} | Poll task status and retrieve results |
Copy-paste async quickstart
This minimal request submits a text-to-video task and returns ataskId.
taskId; you need it to poll for the final result.
Poll for result
resultJson after state becomes success:
Request body
Text-to-video
Image-to-video
Parameters
Result delivery mode. Use
async for polling with statusTask, or callback for webhook delivery.Required when
request_type is callback. Must be a public HTTPS URL that can receive the final task payload. See Webhooks.Kling 3.0 Turbo input parameters.
Response format
Submit task response
POST /generateTask/kling-3-0-turbo returns a task ID when the task is accepted:
API status code.
200 means the task was accepted.Human-readable status message.
Unique task identifier used with the status endpoint.
Status response fields
Unique task identifier.
Current task state:
pending, processing, success, or failed.JSON string containing the generated video URLs. Present when
state is success.Machine-readable failure code. Present when
state is failed.Human-readable failure message. Present when
state is failed.Task creation timestamp in Unix milliseconds.
Task completion timestamp in Unix milliseconds. Present after completion.
Processing duration in milliseconds. Present after successful completion when available.
Webhook callback mode
Use callback mode when your backend should receive the final result automatically instead of polling.code, message, and data shape as the status response. See Webhooks for delivery requirements and retry behavior.
Billing
Kling 3.0 Turbo is billed per output second.text-to-video and image-to-video use the same pricing, and total cost is unit price * duration.
| Resolution | Unit price | Example total |
|---|---|---|
720p | $0.112 / second | 12s: $1.344 |
1080p | $0.14 / second | 15s: $2.10 |
Latency and polling
Actual latency may vary by prompt complexity, selected resolution, route, and current queue load.| Request shape | Typical generation time | Recommended first poll | Poll interval |
|---|---|---|---|
3-5 second clip | 60s-90s | 60s after task creation | 5s-10s |
6-10 second clip | 90s-120s | 60s after task creation | 5s-10s |
11-15 second clip | 120s-180s | 60s after task creation | 5s-10s |
429, slow down requests and retry with backoff. For account-level details, see System APIs.
Errors and troubleshooting
HTTP errors
| Code | Meaning | What to do |
|---|---|---|
400 | Invalid request body, mode, parameter, or image URL | Fix the request before retrying |
401 | Missing or invalid API key | Check the Authorization header |
402 | Insufficient balance or quota | Add balance or switch account/key |
403 | Key or route cannot access the model | Check permissions and route strategy |
429 | Rate limit or concurrency limit reached | Retry with exponential backoff |
500 | Server error | Retry with backoff |
502 | Upstream service error | Retry with backoff |
504 | Upstream timeout | Retry or use callback mode for long-running jobs |
Task failure codes
| Fail code | Meaning | What to do |
|---|---|---|
CONTENT_VIOLATION | Prompt or input media failed safety checks | Change the prompt or input image |
INVALID_PARAMETER | A required field is missing or a value is unsupported | Check mode, duration, resolution, aspect_ratio, and image_urls |
INVALID_IMAGE_URL | The reference image could not be fetched or decoded | Use a direct, publicly accessible image URL |
INSUFFICIENT_BALANCE | The account does not have enough balance for the task | Add balance before retrying |
UPSTREAM_ERROR | Upstream generation failed | Retry with backoff |
UNKNOWN_ERROR | The failure could not be mapped to a more specific code | Retry later or contact support with the taskId |
Common validation issues
| Issue | Fix |
|---|---|
Missing mode | Set input.mode to text-to-video or image-to-video |
Missing prompt | Provide a non-empty prompt string |
Unsupported duration | Use 3 through 15 seconds |
Unsupported resolution | Use 720p or 1080p |
| Aspect ratio has no effect | aspect_ratio is only forwarded for text-to-video |
image-to-video fails validation | Provide exactly 1 image URL in image_urls |