/v1/supply
USDe supply, USDe staked in sUSDe, sUSDe rate, staking ratio
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/ethena-api/v1/supply" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ethena-api/v1/supply", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ethena-api/v1/supply");
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/supply",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "USDe's on-chain size, read straight from the Ethereum contracts. usde_supply is the circulating USDe on Ethereum; usde_staked_in_susde is how much USDe is staked in the sUSDe vault (its totalAssets); susde_to_usde_rate is how much USDe one sUSDe is now worth (above 1.0 — it grows as yield accrues, this is how staking pays out); staking_ratio_pct is the share of all USDe that is staked and earning. Amounts in USDe. Live, cached ~5m.",
"source": "Ethereum public JSON-RPC (USDe + sUSDe contracts), keyless",
"usde_supply": 4486331312,
"susde_shares": 1413474622,
"staking_ratio_pct": 38.92,
"susde_to_usde_rate": 1.235244,
"usde_staked_in_susde": 1745986498
},
"meta": {
"timestamp": "2026-06-12T19:35:41.600Z",
"request_id": "654aa8d6-86b3-4254-bb38-78971a23c93e"
},
"status": "ok",
"message": "Supply retrieved successfully",
"success": true
}