/v1/savings
Current SSR and DSR savings rates
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/sky-api/v1/savings" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sky-api/v1/savings", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sky-api/v1/savings");
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/savings",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"date": "2026-06-12",
"source": "BlockAnalitica (Sky)",
"protocol": "Sky (MakerDAO)",
"dsr_rate_pct": 1.25,
"ssr_rate_pct": 3.6,
"total_in_dsr_usd": 219352958.17,
"total_in_ssr_usd": 6118225057.44,
"total_savings_usd": 6337578015.6
},
"meta": {
"timestamp": "2026-06-12T01:42:32.329Z",
"request_id": "7ba7a5cf-7469-425b-a6b4-c21b86739d25"
},
"status": "ok",
"message": "Savings retrieved successfully",
"success": true
}