Per-user usage limits are available on request. Reach out to your Fireworks
contact to enable them for your account.
Concepts
- Account default cap — the per-user spending limit applied to every user who doesn’t have their own override.
- Per-user override — a specific user’s own cap. Takes precedence over the account default.
- Effective limit — the limit actually applied to a user: their override if set, otherwise the account default. If neither is set, the user is uncapped.
- Current-period usage — how much a user (and the account overall) has spent in the current billing period.
Supported models
Per-user metering currently applies to a subset of serverless models. Usage on models not listed here does not count toward a user’s limit and won’t trigger blocking. Coverage is expanding as more models are updated. Currently supported:- GLM 5.2
- GLM 5.2 (Fast)
- GPT OSS 120B
- MiniMax M2.7
Who can do what
- Account admins — view and manage everything: set the default cap, set/clear per-user overrides, and view every user’s usage.
- Members (non-admin) — view the account-level limits and their own usage and limit. Members cannot view other users’ limits, list all users, or change any limits.
Using firectl
Account-level
Per-user
- used — current-period spend
- effective_limit — the limit applied to them (override, else account default)
- override — their per-user override, if any
- exceeded_until — set only when the user is currently blocked; shows when the block lifts (the end of the current billing period)
Cap a single user (no account default)
You don’t need an account-wide default to cap individuals. Set an override for just the users you want to limit and leave the account default unset — only those users are capped, and everyone else stays uncapped.Using the REST API
Read
Update (admin only)
Updates usePATCH with a field mask indicating which fields to change:
PATCH /v1/accounts/<ACCOUNT_ID>/usageLimits— setdefault_user_limitPATCH /v1/accounts/<ACCOUNT_ID>/users/<USER_ID>/usageLimits— setlimit_override(an unset value removes the override)
firectl (above) is the simplest way to make changes; the same operations are available through the API and SDKs.
How enforcement works
- A user who reaches their effective limit is blocked from further serverless requests until the billing period resets. Blocked requests receive HTTP 402.
- Limits are per billing period. Usage and any blocks reset when the period rolls over.
- Enforcement is near-real-time, not instantaneous. After a user crosses their limit there is a short delay (typically a few minutes) before requests start being blocked, and a similar delay before a user is unblocked after you raise their limit. Plan around this lag rather than expecting an immediate cutoff.
- A
$0cap means the user is allowed no serverless spend — they are blocked immediately. - Removing the account default leaves users uncapped unless they have their own override.
- Only serverless (per-token) inference on supported models counts toward these limits. Usage on other serverless models — and dedicated deployment (GPU-hour) usage — is not metered per user here.
FAQ
What counts toward a user's limit?
What counts toward a user's limit?
Serverless per-token inference spend in the current billing period.
What does a blocked user see?
What does a blocked user see?
Their serverless requests return HTTP
402 until the billing period resets or their limit is raised.Can a user check their own usage?
Can a user check their own usage?
Yes — a user can read their own usage and limit; they just can’t see other users’ limits or change any limits.
Do limits carry over between periods?
Do limits carry over between periods?
No. Usage and blocks reset each billing period.