Documentation
Rate Limits
To ensure fair usage and system stability, our API implements rate limiting. Different subscription plans have different rate limits.
Free: 30,000 requests a month, about 1,000 a day on average, with no daily cap.
Paid plans: Starter 150,000, Pro 500,000 and Business 2,000,000 requests a month. Enterprise is unlimited.
Demo endpoint: The keyless demo endpoint allows about 100 requests a day per IP address and needs no signup.
GET /v1/demo/{ip}X-RateLimit-Limit: Maximum number of requests allowed in the current time window
X-RateLimit-Remaining: Number of requests remaining in the current time window
X-RateLimit-Reset: Time when the rate limit window resets (Unix timestamp)
{
"error": "rate_limit_exceeded",
"message": "Rate limit exceeded. Please try again later.",
"retryAfter": 60
}Implement backoff: When you receive a rate limit error, implement exponential backoff before retrying.
Cache responses: Cache API responses when possible to reduce the number of requests.