ERPC Releases Solana Leader Slot Information API
ERPC Releases Solana Leader Slot Information API

ELSOUL LABO B.V. and Validators DAO, which operate ERPC, released the Leader Slot Information API (getLeaderSlots API). Users holding ERPC usage credits can access upcoming Solana leader schedules, stake weight, validator location data, and reference ping values through an RPC-compatible interface.
Background
On Solana, every slot is assigned to a leader validator that receives transactions and produces blocks. Because leaders rotate globally, low-latency strategy is different from traditional HFT, where infrastructure is often placed near one matching engine. On Solana, the fastest region changes as the leader schedule changes.
Preparing this information independently requires updating hundreds of thousands of slots per epoch, tracking validator metadata, estimating locations, measuring latency, and keeping the data usable in real time. ERPC provides this as an operational API.
API Usage Example
The API can be called like a standard Solana RPC method. The following request retrieves 100 leader slot records starting from the slot specified in
params.json
{
"jsonrpc": "2.0",
"id": 1,
"method": "getLeaderSlots",
"params": [416462031]
}{
"jsonrpc": "2.0",
"id": 1,
"method": "getLeaderSlots",
"params": [416462031]
}The current response is wrapped in
result with success, message, total, and data[]. Each record includes slot, identity, stakeWeight, leader geolocation fields such as leaderRegion and leaderCity, and reference latency in pingToLeaders.Leader Slots as an Operational Timeline
The data can be read visually as a slot timeline from a given observation point. This example uses Frankfurt.
| Slot window | Leader region | Leader location | Stake weight | Ping from Frankfurt | Reading |
|---|---|---|---|---|---|
| 416462031 | stockholm | Šiauliai, LT | 2,502,391.14 | 27.742 ms | European latency, but not the same metro. |
| 416462032-416462035 | amsterdam | Amsterdam, NL | 280,745.69 | 16.835 ms | Low-latency Amsterdam window. |
| 416462036 | frankfurt | Frankfurt am Main, DE | 12,254,651.76 | 0.974 ms | Same-region Frankfurt leader. |
Solana Network Data Website
For public validator and network distribution, use Validators Solutions. Validators Solutions is useful for understanding the broader Solana network, while the ERPC Leader Slot API is designed for slot-level operational routing with schedule, stake weight, location, and latency data.
Strategic Utilization
- Use leader location and ping to decide whether direct sending is efficient for a given slot.
- Use
stakeWeightto understand which validators are likely to appear more frequently over longer windows. - Use multiple regions such as FRA, AMS, NY, TY, and SGP to reduce gaps during leader transitions.
- Avoid relying only on global average latency; Solana opportunity windows move with the leader schedule.
Availability
The Leader Slot Information API is available to ERPC users with usage credits. API tokens can be issued and verified on the ERPC Web Dashboard, and the detailed documentation is available on the ERPC website.
- ERPC Web Dashboard: ERPC Web Dashboard
- Leader Slot API Documentation: Leader Slot API Documentation
Challenges Solved by ERPC and Validators DAO
- Transaction failures and latency fluctuations common in general RPC environments
- Performance limitations imposed by many infrastructure providers
- Significant impact of network distance on communication quality
- Difficulty for smaller projects to access high-quality infrastructure
ERPC and SLV are built from our own need for high-performance Solana infrastructure. We will continue improving the data, routing, and operational tools needed by teams building latency-sensitive Solana applications.
- ERPC Official Website: https://erpc.global/en
- SLV Official Website: https://slv.dev/en
- elSOL Official Website: https://elsol.app/en
- Epics DAO Official Website: https://epics.dev/en



