Ir al contenido
GET /v1/yield

Protocol + sUSDe staking yields (current, 30d, 90d, inception)

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/ethena-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

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