AnimationFunnel

Rate limits

The API is rate-limited per API key. Here's how to stay within limits and handle 429 responses gracefully.

Current limits

The default rate limit is 100 requests per minute per API key. Enterprise workspaces get higher limits — contact sales.

Rate limit headers

Every API response includes these headers:

X-RateLimit-Limit — your total limit per minute.
X-RateLimit-Remaining — requests left in the current window.
X-RateLimit-Reset — unix timestamp when the limit resets.

Handling 429 responses

When you exceed the limit, we respond with HTTP 429 Too Many Requests. Always back off — don't retry immediately.

The response includes a Retry-After header telling you how many seconds to wait before retrying.

Was this page helpful?