Load Distribution
Balance RPC traffic across multiple providers with Load Distributed routing. Supports equal-weight distribution, health-aware rotation, and upcoming dynamic weights for custom gateway configuration.
Load Distributed routing is built for developers who want balanced performance across multiple RPC providers. This mode spreads requests across all active endpoints to avoid overloading any single provider.
How It Works
- Equal-weight distribution (current): Right now, traffic is distributed evenly across all healthy endpoints. Each provider receives the same share of requests.
- Health-aware rotation: If an endpoint becomes unhealthy, it is automatically removed from the rotation until it recovers.
- Dynamic weights (coming soon): In the future, you’ll be able to assign custom weights to endpoints—letting you send more traffic to faster, cheaper, or higher-capacity nodes.
How to Configure Routing in a Custom Gateway
Update Gateway
PATCH /v4/manage/gateway/{id}
Update routing in an existing gateway by using the endpointRouting parameter.

Updated about 5 hours ago