/v1/relays
Each MEV-Boost relay's reach
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/mevboost-api/v1/relays" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mevboost-api/v1/relays", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mevboost-api/v1/relays");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/mevboost-api/v1/relays",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "Each major MEV-Boost relay's reach over the most recent window of blocks — how many of them it delivered to validators (reach_pct = share of the window it covered). Shares overlap and sum above 100% because the same winning block is usually delivered by several relays at once, so this is reach/coverage, not an exclusive market split. live=false means the relay did not respond this cycle. Relays sampled: Flashbots, Ultrasound, bloXroute, Agnostic, Aestus, Titan. Live, cached ~60s.",
"relays": [
{
"live": true,
"relay": "ultrasound",
"reach_pct": 67,
"blocks_delivered": 67
},
{
"live": true,
"relay": "titan",
"reach_pct": 44,
"blocks_delivered": 44
},
{
"live": true,
"relay": "bloxroute",
"reach_pct": 34,
"blocks_delivered": 34
},
{
"live": true,
"relay": "aestus",
"reach_pct": 14,
"blocks_delivered": 14
},
{
"live": true,
"relay": "flashbots",
"reach_pct": 9,
"blocks_delivered": 9
},
{
"live": true,
"relay": "agnostic",
"reach_pct": 5,
"blocks_delivered": 5
}
],
"source": "Public MEV-Boost relay data APIs, keyless",
"indicator": "MEV-Boost relays",
"window_blocks": 100
},
"meta": {
"timestamp": "2026-06-12T19:36:10.826Z",
"request_id": "8d12fcc4-a993-4941-b3b3-3580f0904cb6"
},
"status": "ok",
"message": "Relays retrieved successfully",
"success": true
}