Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/jito-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/jito-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/jito-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/jito-api/v1/meta");
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/jito-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "tips and meta take no parameters. rewards takes days (1-60, default 14). validators takes limit (1-100, default 25). Tips and rewards are in SOL (tips also in lamports); stake is SOL (converted from lamports); commissions are percent. A short ~30-second protective cache fronts the upstreams.",
        "source": "Jito public APIs (bundles.jito.wtf + kobe.mainnet.jito.network), keyless, live",
        "service": "jito-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/tips": "Live MEV tip floor — what to tip to land a transaction (percentiles).",
            "GET /v1/rewards": "Daily Solana MEV economy — tips, SOL to validators/Jito, tippers (days 1-60).",
            "GET /v1/validators": "Jito-running validators ranked by stake, with MEV commission (limit 1-100)."
        },
        "sample_tip": {
            "time": "2026-06-12T19:34:35+00:00",
            "median_tip_sol": 8.7478e-5
        },
        "description": "The Solana MEV layer via Jito, live and keyless. Jito runs Solana's dominant block-engine: searchers tip to land bundles, Jito-running validators capture the MEV, and a slice flows to JitoSOL stakers. It exposes the live MEV tip floor (the price of priority — what to tip to land a transaction, by percentile), the daily MEV economy (tips paid, SOL to validators and Jito, tippers per day), and the Jito-running validators ranked by stake with their MEV configuration. The Solana MEV / Jito cut — distinct from the Ethereum MEV-Boost builder-and-relay feed (different chain and mechanism), the Solana validator-decentralisation feed, and the Solana network-performance feed.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T19:35:57.397Z",
        "request_id": "c4430f3d-d3be-4b90-9a25-c00e3d6bf242"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}