Zum Inhalt springen
GET /v1/overview

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

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/ethena-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

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