Back to Features
🛠️

Rate Limiting

ActivePlatformMUSTFREE

What it does

API rate limiting protects the platform and ensures fair usage. The Forever Free plan includes 60 requests per minute and 100,000 calls per month (soft cap). Every response includes X-RateLimit-Remaining and X-RateLimit-Reset headers.

How to use it

1

Check response headers

Every API response includes X-RateLimit-Remaining (calls left) and X-RateLimit-Reset (reset timestamp).

2

Handle 429 responses

When rate limited, you receive HTTP 429 with a Retry-After header. Wait and retry.

3

Implement backoff

Use exponential backoff in your client code. The official SDKs handle this automatically.

4

Request higher limits

Enterprise customers can contact us for custom rate limits.

Related Features

Having issues?