Video generation models on EmpirioLabs create video from a text prompt and, depending on the model, from a source image, an existing clip, reference frames, or driving audio. Each request returns a job id you poll until the video is ready, so one integration pattern works across every video model.
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. Swap the model id for any model above. Get an API key from the EmpirioLabs dashboard.
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."
}'EmpirioLabs lists 17 视频生成 models, including Kling 3.0 Turbo, Hunyuan Video 1.5, Seedance 2.0 Fast. Each model has its own dedicated API page with live pricing, parameters, and a quickstart.
Every 视频生成 model is billed pay as you go, with no monthly minimum. The exact rate card lives on each model's page and always matches what the API charges.
No. Every model here runs in the EmpirioLabs playground, a friendly in-browser interface where you can set the options and see results without writing any code. When you are ready to automate, the same model is available through the API.
Check out our pricing or reach out if you want your own model deployed on our stack.