Genace

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

Seedance 2.0 Fast runs upstream on fal. You can hold a key with the vendor directly, or one key that reaches Seedance 2.0 Fast 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

25 credits at default settings, which is $0.25–$0.35 depending on your pack.

The constraint to know before you build

duration_sec takes any integer from 3 to 15, so you pay for the seconds you asked for rather than a rounded bucket.

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":"seedance-2.0-fast","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/seedance.ts — pricing() and paramsSchema
  • codebase: src/ai/api/auth.ts — key verification
  • codebase: src/ai/api/quota.ts — per-tier ceilings