Skip to main content

Default Limits

By default, each API key allows:
  • Up to 20 new requests per 10 seconds
  • Supports 100+ concurrent running tasks simultaneously
Limits are applied per API key, not per account.

Per-Key Configuration

When creating or updating an API key, you can set custom limits:
FieldDescription
rate_limit_rpmMax requests per minute
rate_limit_tphMax requests per hour
rate_limit_tpdMax requests per day
All three limits are enforced independently. If any limit is exceeded, the request is rejected.

When You Hit a Limit

Requests that exceed the rate limit are rejected with:
HTTP 429 Too Many Requests
{ "code": 429, "message": "Rate limit exceeded" }
Rejected requests are not queued — they are dropped immediately. Implement exponential backoff in your client.

Credit Limits (Safe Spend)

In addition to rate limits, you can set credit-based caps per key:
FieldDescription
hourly_credit_limitMax credits consumed per hour
daily_credit_limitMax credits consumed per day
total_credit_limitLifetime cap for this key
These help prevent runaway costs if a key is compromised or misused.

Increasing Your Limits

If you consistently hit 429 errors and need higher throughput, contact support via Discord or Telegram (bottom-left of the dashboard). Limit increases are handled case by case.