/v1/yield
Protocol + sUSDe staking yields (current, 30d, 90d, inception)
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/ethena-api/v1/yield" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ethena-api/v1/yield", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ethena-api/v1/yield");
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/yield",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Ethena's yields. protocol_yield_pct is what the whole delta-neutral strategy currently earns (funding + staking); susde_staking_yield_pct is the rate sUSDe holders currently receive; the 30-day, 90-day and since-inception figures are the trailing average sUSDe APY. The yield comes from perpetual-futures funding plus staked-ETH rewards, so it rises and falls with the funding market. Annualised percentages. Live, cached ~5m.",
"as_of": "10 Jun 26",
"source": "Ethena public yield API (app.ethena.fi), keyless",
"susde_apy_30d_pct": 3.875,
"susde_apy_90d_pct": 3.668,
"protocol_yield_pct": 3.874,
"protocol_yield_30d_pct": 4.36,
"susde_apy_inception_pct": 11.195,
"susde_staking_yield_pct": 3.503
},
"meta": {
"timestamp": "2026-06-12T19:35:41.424Z",
"request_id": "9447fbad-e213-4fc7-b1c9-bf1bf9814eea"
},
"status": "ok",
"message": "Yield retrieved successfully",
"success": true
}