Genace

Kling API key: two paths, and what changes after you have one

Kling 2.0 Standard runs upstream on fal. You can hold a key with the vendor directly, or one key that reaches Kling 2.0 Standard alongside the other models through a single interface. The tradeoffs are laid out in how to get an AI video API key — this page covers what changes once you have one.

What a call costs

35 credits at default settings, which is $0.35–$0.48 depending on your pack.

The constraint to know before you build

duration_sec accepts only 5 or 10. Anything in between rounds up to the next option, which is a real overpay on variable-length work.

Using it

export GENACE_API_KEY=sk_xxx

curl -X POST https://genace.ai/api/v1/video/generations \
  -H "Authorization: Bearer $GENACE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"kling-2.0-standard","prompt":"..."}'

Verifying the key costs nothing

curl https://genace.ai/api/v1/models -H "Authorization: Bearer $GENACE_API_KEY"

Authenticated, free, outside quota. A 200 means the key is live; anything else is covered in MISSING_API_KEY and INVALID_API_KEY.

Ceilings apply per key

TierRequests per minuteConcurrent jobs
Free51
Pro605

Which is the argument for issuing more than one: a key held by an experimental agent can be capped independently of your production key.

Models covered on this page

Where these facts come from

  • codebase: src/ai/providers/kling.ts — pricing() and paramsSchema
  • codebase: src/ai/api/auth.ts — key verification
  • codebase: src/ai/api/quota.ts — per-tier ceilings