/v1/assets
Restaked-asset breakdown — which ETH / LSTs are restaked
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/eigenlayer-api/v1/assets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/eigenlayer-api/v1/assets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/eigenlayer-api/v1/assets");
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/eigenlayer-api/v1/assets",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Which assets are restaked into EigenLayer — native ETH and liquid-staking tokens — by USD value and share.",
"count": 13,
"assets": [
{
"usd": 3868468160.55,
"asset": "WETH",
"share_pct": 82.79
},
{
"usd": 646070363.55,
"asset": "STETH",
"share_pct": 13.83
},
{
"usd": 89378909.87,
"asset": "ETHX",
"share_pct": 1.91
},
{
"usd": 15297802.84,
"asset": "LSETH",
"share_pct": 0.33
},
{
"usd": 13023616.5,
"asset": "SWETH",
"share_pct": 0.28
},
{
"usd": 8828065.91,
"asset": "OSETH",
"share_pct": 0.19
},
{
"usd": 8681711.99,
"asset": "RETH",
"share_pct": 0.19
},
{
"usd": 4861890.7,
"asset": "SFRXETH",
"share_pct": 0.1
},
{
"usd": 3865734.19,
"asset": "ATH",
"share_pct": 0.08
},
{
"usd": 3113984.04,
"asset": "ZRO",
"share_pct": 0.07
},
{
"usd": 2847770.35,
"asset": "CBETH",
"share_pct": 0.06
},
{
"usd": 2694018.44,
"asset": "OETH",
"share_pct": 0.06
},
{
"usd": 2107905.24,
"asset": "METH",
"share_pct": 0.05
}
],
"source": "DeFiLlama",
"protocol": "EigenLayer",
"asset_count": 13
},
"meta": {
"timestamp": "2026-06-14T08:04:33.916Z",
"request_id": "78a38473-6bfb-40ea-94cb-b3ef63ebb3c4"
},
"status": "ok",
"message": "EigenLayer restaked assets retrieved successfully",
"success": true
}