Skip to content
GET /v1/savings

Current SSR and DSR savings rates

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/sky-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest 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
}