Skip to main content

Rate Limits

Rate limits are applied per API key (or per IP for unauthenticated requests).

Tiers

TierCalls/DayHistoryPrice
No key300/15min (shared IP)FullFree
Free100/dayFull$0
Starter1,000/dayFullComing Soon
Pro10,000/dayFullComing Soon
Enterprise100,000/dayFullContact us
During beta, all tiers have full access to all endpoints and full history depth. Tier restrictions will be introduced when pricing goes live.

Rate Limit Headers

When using an API key, responses include rate limit headers:
X-RateLimit-Limit: 1000
X-RateLimit-Remaining: 847

Exceeding the Limit

When you exceed your rate limit, you’ll receive a 429 response:
{
  "error": "Rate limit exceeded",
  "limit": 100,
  "resetAt": "2026-03-22T00:00:00.000Z"
}
Daily limits reset at midnight UTC.

Best Practices

  • Cache responses locally when possible
  • Use the /api/v1/intelligence endpoint to fetch multiple data types in one call
  • Use /api/v1/coins/overview instead of querying individual coins
  • Subscribe to WebSocket feeds for real-time data (coming soon)