Skip to main content

Current Plans

PlanRate LimitMonthly QuotaSupport
Trial[To Do]10 requests/monthDocumentation, community
EnterpriseCustomCustomDedicated support, <4hr response, custom SLAs
Getting started? Trial access is free - no credit card required. Get your API key →

Usage Monitoring

Track your API usage in real-time through the Range Dashboard.
  • Current period usage - Requests consumed in the current billing cycle
  • Remaining quota - Requests available before the next reset
  • Historical usage - Usage trends over time

Handling Rate Limits

When you exceed your rate limit, the API returns a 429 Too Many Requests response.
  1. Check response headers - [To Do]
  2. Implement exponential backoff - Start with a 1-second delay, doubling on each retry
  3. Add jitter - Randomize retry delays to avoid thundering herd problems
  4. Set a max retry count - Cap retries at 3–5 attempts
async function fetchWithRetry(url, options, maxRetries = 3) {
  for (let attempt = 0; attempt < maxRetries; attempt++) {
    const response = await fetch(url, options);

    if (response.status === 429) {
      const delay = Math.pow(2, attempt) * 1000 + Math.random() * 1000;
      await new Promise((resolve) => setTimeout(resolve, delay));
      continue;
    }

    return response;
  }
  throw new Error("Max retries exceeded");
}

Upgrading to Enterprise

Enterprise plans include:
  • Higher rate limits and quotas tailored to your volume
  • Dedicated support with <4-hour response times
  • Custom SLAs for uptime and latency guarantees
  • Priority access to new endpoints and features
  • Bulk pricing for high-volume screening workflows

Contact Sales

Get a custom plan with higher limits, dedicated support, and enterprise SLAs.

End-to-End Compliance with Faraday

Risk API provides the intelligence layer - scoring addresses, screening sanctions, and assessing payment risk. For teams that need to go further and execute compliant transfers end-to-end, Range’s Faraday API completes the picture. Faraday combines:
  • Intelligent routing across DEX aggregators and bridges for best execution
  • Built-in compliance with OFAC screening, Travel Rule support, and audit trails
  • Full auditability with compliance records for every transaction
  • Risk API integration - every Faraday transfer is automatically screened using the same risk scoring
Last modified on March 2, 2026