Μετάβαση στο περιεχόμενο
GET /v1/token

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

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/lstcompare-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}