Aller au contenu
GET /v1/overview

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

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/ethena-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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