Skip to main content
NearNode enforces rate limits to ensure platform stability across all tenants. Limits are applied per API key and vary by plan tier and operation type.

Limits by Plan

Ops Tip: Standard requests include GET, POST, PATCH, and DELETE on nodes, analytics queries, and webhook management. Batch operations include POST /batches and batch generation endpoints.

Rate Limit Headers

Every API response includes rate limit headers:

Handling 429 Too Many Requests

When you exceed the limit, the API returns:
The response includes a Retry-After header with the number of seconds to wait:
Implement exponential backoff with jitter:

Best Practices

Read X-RateLimit-Remaining from each response. If you’re approaching zero, throttle proactively instead of hitting the wall.
Creating 100 nodes individually burns 100 requests. Use POST /batches to generate them in a single call — it counts as one batch operation.
If you’re polling GET /nodes frequently, cache the response on your side and use webhooks to invalidate the cache when data changes.
If you need to update 200 nodes, spread the requests across 2+ minutes rather than firing them all at once. Your integration is more resilient and other tenants are unaffected.
Need higher limits? Contact us at support@nearnode.io or upgrade to Enterprise for custom rate limits tailored to your workload.