/v1/token
One LST by symbol: rate, supply, TVL, 1d/7d/30d APR
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/lstcompare-api/v1/token" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lstcompare-api/v1/token", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lstcompare-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/lstcompare-api/v1/token",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "One liquid-staking 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 the on-chain rate growth with real block timestamps — the actual yield holders earned, not a marketing figure (1d is noisier; 7d/30d are steadier). A window is null if its historical state is unavailable. Live, cached ~90s.",
"source": "Ethereum rETH contract via public RPC (ethereum-rpc.publicnode.com), keyless",
"supply": 327265.8,
"symbol": "rETH",
"tvl_eth": 381346.4,
"at_block": 25306236,
"protocol": "Rocket Pool",
"description": "rETH (getExchangeRate)",
"net_apr_pct": {
"1d": 1.89,
"7d": 2.12,
"30d": 2
},
"eth_per_token": 1.16524984,
"token_per_eth": 0.85818506
},
"meta": {
"timestamp": "2026-06-13T04:42:40.219Z",
"request_id": "378af77a-b58a-465f-b26e-66ac3e1a0522"
},
"status": "ok",
"message": "Token retrieved successfully",
"success": true
}