← All models

kling-3.0-turbo

快手 · Image

kling-3.0-turbo is available on GetModel via an OpenAI-compatible API, billed pay-as-you-go. Get one key and call it from any OpenAI SDK.

Pricing

ItemPrice
Per generation$0.135

How to call

curl https://getmodel.ai/v1/chat/completions \
  -H "Authorization: Bearer $GETMODEL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"kling-3.0-turbo","messages":[{"role":"user","content":"Hello"}]}'
from openai import OpenAI
client = OpenAI(base_url="https://getmodel.ai/v1", api_key="$GETMODEL_API_KEY")
resp = client.chat.completions.create(
    model="kling-3.0-turbo",
    messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)

Details

Provider快手
TypeImage
Endpointsopenai / 3.0turbo-text-to-video / 3.0turbo-image-to-video
Available groupsDefault

FAQ

How much does the kling-3.0-turbo API cost?

kling-3.0-turbo on GetModel costs $0.135 / Per generation, billed pay-as-you-go with no subscription.

How do I call kling-3.0-turbo via API?

Point any OpenAI-compatible client at https://getmodel.ai/v1 with your GetModel API key and set the model to "kling-3.0-turbo".

Can I use kling-3.0-turbo together with other models?

Yes — one GetModel API key works for kling-3.0-turbo and 30+ other models. Just change the model field.