Kling V2.5 Turbo Pro
kling-v2-5-turbo-proKling 2.5 Turbo Pro: Unlock pro-level text-to-video and image-to-video creation with smooth motion, cinematic depth, and remarkable prompt adherence.
- Price
- US$0.084/s
- Aspect ratios
- 16:9, 9:16, 1:1
- Duration
- 5 or 10 s
- Input โ output
- Text + Image โ Video
- Developer
- Kuaishou (Kling)
- Updated
- September 24, 2026
Playground
Try Kling V2.5 Turbo Pro
Input & output
This run
US$0.42 ยท 42 credits
Billed: 5 s
For accounts without a purchase: runs above 2 credits need a top-up.
New here?
10 free credits (US$0.10) when you sign up with Google
Usable 24 hours after sign-up, up to 5 runs per day and at most 2 credits per run. Other sign-in methods start without credits.
Examples
Prompt
a woman is dancing
Length: 0:05
Settings
- aspect_ratio
- 16:9
- duration
- 5
Prompt
A skilled parkour athlete sprints through the city, leaping and doing many flips over urban obstacles. FPV tracking shot, swoops and banks with him.
Length: 0:05
Settings
- aspect_ratio
- 16:9
- duration
- 5
Prompt
A woman doing an impressive breakdancing performance, including flips and intense spins. The camera is aggressive, precise moves with speed, ramps, and whip-like acceleration and deceleration.
Length: 0:05
Settings
- aspect_ratio
- 16:9
- duration
- 5
About Kling V2.5 Turbo Pro
Kling V2.5 Turbo Pro is a model by Kuaishou (Kling) in the Video generation category. On Railwail, Kling V2.5 Turbo Pro costs US$0.084 per second of video. A default run of 5 seconds costs US$0.42. Supported aspect ratios: 16:9, 9:16 and 1:1. Possible lengths: 5 or 10 s.
Pricing
| Per second | US$0.084 per second of video |
|---|---|
| Default run (5 s) | US$0.42 per run |
- 1 credit = US$0.01
Cost calculator
Price calculator
Total
US$42.00
4,200 credits
Per run
US$0.42 ยท 42 credits
billed as 5 s
Fixed price per run, known before the run starts.
API
curl https://railwail.com/api/v1/videos/generations \
-H "Authorization: Bearer $RAILWAIL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "kling-v2-5-turbo-pro",
"prompt": "A slow drone shot over a misty pine forest at sunrise"
}'
# Response: {"job_id": "...", "status": "queued", ...}
# Poll until status is completed, failed or cancelled:
curl https://railwail.com/api/v1/jobs/JOB_ID \
-H "Authorization: Bearer $RAILWAIL_API_KEY"import os
import time
import requests
API = "https://railwail.com/api/v1"
headers = {"Authorization": f"Bearer {os.environ['RAILWAIL_API_KEY']}"}
job = requests.post(
f"{API}/videos/generations",
headers=headers,
json={
"model": "kling-v2-5-turbo-pro",
"prompt": "A slow drone shot over a misty pine forest at sunrise",
},
).json()
while True:
status = requests.get(f"{API}/jobs/{job['job_id']}", headers=headers).json()
if status["status"] in ("completed", "failed", "cancelled"):
break
time.sleep(5)
print(status["status"], status.get("output_url"))const API = "https://railwail.com/api/v1";
const headers = {
Authorization: `Bearer ${process.env.RAILWAIL_API_KEY}`,
"Content-Type": "application/json",
};
const job = await fetch(`${API}/videos/generations`, {
method: "POST",
headers,
body: JSON.stringify({
model: "kling-v2-5-turbo-pro",
prompt: "A slow drone shot over a misty pine forest at sunrise"
}),
}).then((r) => r.json());
let status;
do {
await new Promise((r) => setTimeout(r, 5000));
status = await fetch(`${API}/jobs/${job.job_id}`, { headers }).then((r) => r.json());
} while (!["completed", "failed", "cancelled"].includes(status.status));
console.log(status.status, status.output_url);Videos run asynchronously: the first call returns a job_id; query /api/v1/jobs/JOB_ID until the status is completed.
Specifications
- Model ID
kling-v2-5-turbo-pro- Developer
- Kuaishou (Kling)
- Category
- Video generation
- Input
- Text, Image
- Output
- Video
- Aspect ratios
- 16:9, 9:16, 1:1
- Duration
- 5 or 10 s
- Billing
- Fixed price, known before the run
- Catalog entry updated
- September 24, 2026
Input parameters
Inputs and settings from the model's input schema. The example in the API section shows which of them the API accepts.
promptrequiredType: TextDefault: โAllowed values: โdurationType: ChoiceDefault:5Allowed values: 5 or 10end_imageType: ImageDefault: โAllowed values: โstart_imageType: ImageDefault: โAllowed values: โaspect_ratioType: ChoiceDefault: โAllowed values: 16:9, 9:16 or 1:1
Tags
- replicate
- kwaivgi
- text-to-video
Use cases
Frequently asked questions
What is Kling V2.5 Turbo Pro?
Kling V2.5 Turbo Pro is a model by Kuaishou (Kling) in the Video generation category. On Railwail you can call it with an API key through the Railwail API.
How much does Kling V2.5 Turbo Pro cost on Railwail?
On Railwail, Kling V2.5 Turbo Pro costs US$0.084 per second of video. A default run of 5 seconds costs US$0.42. The price is known before the run starts. Usage is paid from prepaid credits; 1 credit equals US$0.01.
Which settings does Kling V2.5 Turbo Pro support?
According to its input schema, Kling V2.5 Turbo Pro knows these parameters: prompt, duration (5 or 10), end_image, start_image and aspect_ratio (16:9, 9:16 or 1:1).
How fast is Kling V2.5 Turbo Pro?
There are not enough measured runs of Kling V2.5 Turbo Pro on Railwail yet to state a run time. It depends on the input, the settings and the load at the provider.
Is Kling V2.5 Turbo Pro better than Google Veo 3.1?
That depends on the task. Kling V2.5 Turbo Pro (Kuaishou (Kling)) and Google Veo 3.1 (Google DeepMind) are both models in the Video generation category. The comparison page shows their prices and specifications side by side.
Compare Kling V2.5 Turbo Pro and Google Veo 3.1Can Kling V2.5 Turbo Pro use an image as input?
Yes. Send the image in the end_image parameter.
How do I use Kling V2.5 Turbo Pro through the API?
Create a Railwail API key and send your request with the model ID kling-v2-5-turbo-pro. Code examples for curl, Python and JavaScript are in the API section of this page.
Comparable models
All in this category- Google Veo 2Google DeepMind
Google's state-of-the-art video generation model. Simulates real-world physics with various visual styles.
- Google Veo 3 (Replicate)Google DeepMind
Google's Veo 3 served via Replicate. Text-to-video with native synchronized audio generation. High-fidelity motion and scene coherence in short clips.
- Google Veo 3.1Google DeepMind
Latest Veo with image-to-video and context-aware audio
Use Kling V2.5 Turbo Pro via the API
One API key for every model on Railwail. Usage is charged from prepaid credits, 1 credit = US$0.01.