Vai al contenuto
GET /v1/token

One LRT by symbol: rate, supply, TVL, 1d/7d/30d APR

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

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

{
    "data": {
        "note": "One liquid-restaking token in detail. eth_per_token is the live on-chain exchange rate; tvl_eth is supply × rate (the ETH backing the token). net_apr_pct is the net yield over 1d/7d/30d, annualised from on-chain rate growth with real block timestamps — realised staking+restaking accrual, excluding any separately-distributed points/airdrops. IMPORTANT: several LRT rates update on an oracle schedule (Renzo, Swell) or in discrete ERC-4626 accrual steps (Puffer) rather than every block, so the 1d and 7d figures are NOISY for those (they can read 0 or even slightly negative when no update fell in the window, or spike right after one) — treat 30d as the reliable yield. A window is null if its historical state is unavailable. Live, cached ~90s.",
        "source": "Ethereum weETH rate source via public RPC (ethereum-rpc.publicnode.com), keyless",
        "supply": 1558681.2,
        "symbol": "weETH",
        "tvl_eth": 1709784,
        "at_block": 25306236,
        "protocol": "ether.fi",
        "description": "ether.fi weETH (getRate)",
        "net_apr_pct": {
            "1d": 2.58,
            "7d": 2.7,
            "30d": 2.51
        },
        "eth_per_token": 1.09694267,
        "token_per_eth": 0.91162467
    },
    "meta": {
        "timestamp": "2026-06-13T04:42:39.504Z",
        "request_id": "75d88664-bd3b-41e0-b94a-9e9da6e16b3b"
    },
    "status": "ok",
    "message": "Token retrieved successfully",
    "success": true
}