Skip to content
GET /v1/rewards

Daily Solana MEV economy — tips, SOL to validators/Jito, tippers

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/jito-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "days": [
            {
                "day": "2026-06-12",
                "tippers": 106028,
                "mev_tips": 9723141,
                "jito_tips_sol": 61.212557837,
                "validator_tips_sol": 1163.038598902
            },
            {
                "day": "2026-06-11",
                "tippers": 122747,
                "mev_tips": 11212542,
                "jito_tips_sol": 70.005719491,
                "validator_tips_sol": 1330.108670335
            },
            {
                "day": "2026-06-10",
                "tippers": 135814,
                "mev_tips": 12992590,
                "jito_tips_sol": 67.69224836,
                "validator_tips_sol": 1286.152718835
            },
            {
                "day": "2026-06-09",
                "tippers": 142586,
                "mev_tips": 11683419,
                "jito_tips_sol": 58.468959846,
                "validator_tips_sol": 1110.910237072
            },
            {
                "day": "2026-06-08",
                "tippers": 114147,
                "mev_tips": 11665147,
                "jito_tips_sol": 54.315544365,
                "validator_tips_sol": 1031.995342929
            },
            {
                "day": "2026-06-07",
                "tippers": 100686,
                "mev_tips": 11549886,
                "jito_tips_sol": 46.906857276,
                "validator_tips_sol": 891.230288243
            },
            {
                "day": "2026-06-06",
                "tippers": 107573,
                "mev_tips": 11162829,
                "jito_tips_sol": 49.85517798,
                "validator_tips_sol": 947.248381613
            },
            {
                "day": "2026-06-05",
                "tippers": 128108,
                "mev_tips": 15034185,
                "jito_tips_sol": 84.792258895,
                "validator_tips_sol": 1611.052919003
            },
            {
                "day": "2026-06-04",
                "tippers": 138075,
                "mev_tips": 14414695,
                "jito_tips_sol": 69.698451319,
                "validator_tips_sol": 1324.270575066
            },
            {
                "day": "2026-06-03",
                "tippers": 146505,
                "mev_tips": 11189855,
                "jito_tips_sol": 53.744775404,
                "validator_tips_sol": 1021.150732676
            },
            {
                "day": "2026-06-02",
                "tippers": 115663,
                "mev_tips": 12105962,
                "jito_tips_sol": 60.758598953,
                "validator_tips_sol": 1154.413380117
            },
            {
                "day": "2026-06-01",
                "tippers": 107635,
                "mev_tips": 13366851,
                "jito_tips_sol": 67.751662268,
                "validator_tips_sol": 1287.281583099
            },
            {
                "day": "2026-05-31",
                "tippers": 90922,
                "m
…