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

At-a-glance: supply, staking ratio and live yield

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

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

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

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

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

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

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

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

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

{
    "data": {
        "note": "Ethena USDe at a glance — the circulating USDe supply, how much is staked in sUSDe and the staking ratio, alongside the live sUSDe staking yield and protocol yield. A one-call snapshot of how big the synthetic dollar is and how much it is paying. See /v1/yield and /v1/supply for full detail. Live, cached ~5m.",
        "as_of": "10 Jun 26",
        "source": "Ethena public yield API + Ethereum JSON-RPC, keyless",
        "usde_supply": 4486331312,
        "staking_ratio_pct": 38.92,
        "protocol_yield_pct": 3.874,
        "susde_to_usde_rate": 1.235244,
        "usde_staked_in_susde": 1745986498,
        "susde_staking_yield_pct": 3.503
    },
    "meta": {
        "timestamp": "2026-06-12T19:35:41.702Z",
        "request_id": "29972415-a5c7-4164-805c-d8c874d0267f"
    },
    "status": "ok",
    "message": "Overview retrieved successfully",
    "success": true
}