Kling 3.0 Turbo API

Text-to-video and image-to-video with synchronized native audio, at 720p or 1080p for 3 to 15 seconds, with aspect ratio and prompt control.

Kling AIVideo GenerationProprietary EndpointNew

About Kling 3.0 Turbo

Text-to-video and image-to-video with synchronized native audio, at 720p or 1080p for 3 to 15 seconds, with aspect ratio and prompt control.

Also known as Kling Turbo, Kling AI Kling 3.0 Turbo, Kling-3.0-Turbo, kling-3-0-turbo

text to videoimage to videoaudiovideo generation

Kling 3.0 Turbo specs

Model ID
kling-3-0-turbo
Provider
Kling AI
Category
Video Generation
Input
text, image
Output
video
Endpoints
POST /v1/videos/generations

Kling 3.0 Turbo API pricing

Live pay-as-you-go rates from the EmpirioLabs catalog. You are billed only for what you use, with no monthly minimum.

Type
Spec
Rate
720p
per second
$0.18
1080p
per second
$0.225
Compare on the full pricing page

How to call the Kling 3.0 Turbo API

Kling 3.0 Turbo runs through POST /v1/videos/generations. The request returns a job_id right away; poll GET /v1/jobs/{job_id} until the job completes and read the output URLs from the result. Get an API key from the EmpirioLabs dashboard.

cURL: submit the job
curl https://api.empiriolabs.ai/v1/videos/generations \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "kling-3-0-turbo",
    "prompt": "Describe what you want Kling 3.0 Turbo to generate."
  }'
cURL: poll for the result
curl https://api.empiriolabs.ai/v1/jobs/JOB_ID \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY"
Python
import requests

response = requests.post(
    "https://api.empiriolabs.ai/v1/videos/generations",
    headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
    json={
        "model": "kling-3-0-turbo",
        "prompt": "Describe what you want Kling 3.0 Turbo to generate.",
    },
)
job = response.json()

# Generation runs as an async job. Poll until it completes.
import time
while True:
    status = requests.get(
        f"https://api.empiriolabs.ai/v1/jobs/{job['job_id']}",
        headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
    ).json()
    if status.get("status") in ("completed", "failed"):
        print(status)
        break
    time.sleep(5)
Full Kling 3.0 Turbo API reference

Kling 3.0 Turbo API parameters

Request parameters supported by the Kling 3.0 Turbo API on EmpirioLabs. Defaults apply when a field is omitted.

ParameterTypeDefaultRange / valuesDescription
promptstring--Describe the video (text-to-video) or the motion to apply to the source image (image-to-video).
imagestring--Optional source image (URL or base64). When provided, the request is image-to-video; when omitted, text-to-video.
negative_promptstring--What to avoid in the generated video.
resolutionenum720p720p, 1080pOutput resolution. 720p renders faster; 1080p is higher fidelity.
aspect_ratioenum16:916:9, 9:16, 1:1Aspect ratio of the output. Used for text-to-video; image-to-video follows the source image.
durationnumber53 to 15Video length in seconds.

Good to know

Text-to-video and image-to-video. Send a prompt to generate from text, or add a source image to animate it. Native audio is generated automatically.

Defaults

  • 5 second duration (3 to 15 seconds supported)
  • 720p output (720p or 1080p)
  • 16:9 aspect ratio for text-to-video (image-to-video follows the source image)

Controls

  • Prompt, negative prompt, resolution, aspect ratio, and duration

Multi-shot prompts

  • Generate up to 6 sequential shots in one video by formatting the prompt as shot 1, <seconds>, <description>; shot 2, <seconds>, <description>;
  • Each shot lasts at least 1 second, and the shot durations must add up to the total duration.
  • Example for a 6 second video: shot 1, 3, a lone astronaut walks across a red desert at dawn; shot 2, 3, the camera tilts up to reveal two pale moons;

Billing

  • Charged per second of generated video at the selected resolution (1080p costs more per second than 720p)
  • A request that fails before any video is produced is not billed

Kling 3.0 Turbo API: common questions

How much does the Kling 3.0 Turbo API cost?

On EmpirioLabs, Kling 3.0 Turbo is billed pay as you go: 720p $0.18 per second; 1080p $0.225 per second. The live rate card on this page always matches what the API charges.

Which endpoint does Kling 3.0 Turbo use?

Kling 3.0 Turbo is served through POST /v1/videos/generations on api.empiriolabs.ai with standard bearer-token authentication.

Can I try Kling 3.0 Turbo in the browser before integrating?

Yes. The EmpirioLabs playground runs Kling 3.0 Turbo in the browser with the same parameters the API exposes, so you can test prompts before writing code.

How do I get a Kling 3.0 Turbo API key?

Create an EmpirioLabs account, then generate a key under API Keys in the dashboard. Billing is pay-as-you-go credits, so you only pay for the requests you make.

Ready to use better endpoints?

Explore our models, or contact us about business inquiries, custom deployments, or anything else.