Vai al contenuto
GET /v1/relays

Each MEV-Boost relay's reach

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/mevboost-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "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
}