/v1/overview
Latest Sky ecosystem snapshot
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/sky-api/v1/overview" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sky-api/v1/overview", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sky-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/sky-api/v1/overview",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"source": "BlockAnalitica (Sky)",
"protocol": "Sky (MakerDAO)",
"farm_apy_pct": 0,
"wallet_count": 749842,
"ecosystem_tvl_usd": 20862012856.14,
"sky_staking_apy_pct": 5.7387,
"ssr_depositor_count": 5707,
"total_reward_tvl_usd": 624857282.8,
"sky_savings_rate_apy_pct": 3.6,
"sky_savings_rate_tvl_usd": 6118919137.29
},
"meta": {
"timestamp": "2026-06-12T01:42:32.040Z",
"request_id": "66540bbc-36b8-423b-a843-e5eb3f44e5d9"
},
"status": "ok",
"message": "Overview retrieved successfully",
"success": true
}