Naar de inhoud
GET /v1/rates

All tracked LSTs: ETH rate, 7d APR, supply, ranked by yield

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "note": "The major Ethereum liquid-staking tokens compared, ranked by net 7-day APR. eth_per_token is the live on-chain exchange rate (one token is worth this much ETH; older tokens have higher rates because rewards have accrued for longer — the rate, not the level, is what matters for yield). apr_7d_pct is the net-of-fees yield over the last week, annualised from the on-chain rate growth. supply is the token's total supply. Live from each token's contract, cached ~90s.",
        "block": 25306236,
        "count": 5,
        "source": "Ethereum LST token contracts via public RPC (ethereum-rpc.publicnode.com), keyless",
        "tokens": [
            {
                "supply": 38829.3,
                "symbol": "sfrxETH",
                "protocol": "Frax",
                "apr_7d_pct": 3.18,
                "eth_per_token": 1.161235
            },
            {
                "supply": 3174974.8,
                "symbol": "wBETH",
                "protocol": "Binance",
                "apr_7d_pct": 2.57,
                "eth_per_token": 1.099795
            },
            {
                "supply": 393750.6,
                "symbol": "cbETH",
                "protocol": "Coinbase",
                "apr_7d_pct": 2.55,
                "eth_per_token": 1.13246
            },
            {
                "supply": 3540322.1,
                "symbol": "wstETH",
                "protocol": "Lido",
                "apr_7d_pct": 2.54,
                "eth_per_token": 1.23686
            },
            {
                "supply": 327265.8,
                "symbol": "rETH",
                "protocol": "Rocket Pool",
                "apr_7d_pct": 2.12,
                "eth_per_token": 1.16525
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-13T04:42:39.948Z",
        "request_id": "87150a25-d619-4b5b-bec4-ba822402d465"
    },
    "status": "ok",
    "message": "LST rates retrieved successfully",
    "success": true
}