OpenInfra.sh is now live - Solana infrastructure, included with every server. LEARN MORE HERE >

OpenInfra.shopeninfra.sh

Rate limits

Shared endpoints are rate-limited. Dedicated servers have unlimited throughput — no caps, no queuing.

Limits by tier

TierReq/sReq/monthNotes
Shared (no key)10300 000Public IP limit; suitable for testing
Shared (API key)10010 000 000Authenticated shared tier
Dedicated serverUnlimitedUnlimitedRate limiting disabled entirely

Rate limit headers

All responses from shared endpoints include rate limit metadata:

HeaderDescription
X-RateLimit-LimitMaximum requests per window
X-RateLimit-RemainingRequests left in the current window
X-RateLimit-ResetUnix timestamp when the window resets
Retry-AfterSeconds to wait (only on 429 responses)

429 handling

When you exceed the limit, the endpoint returns HTTP 429 with a Retry-After header. Implement exponential back-off:

  • Wait at least the number of seconds in Retry-After before retrying.
  • Double the wait on each consecutive 429.
  • Cap the maximum wait at 60 seconds.
  • Log the retry count to detect systemic issues.