Skip to content
GET /v1/savings

Spark Savings products (Sky Savings Rate) with live savings APY

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/spark-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/spark-api/v1/savings" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/spark-api/v1/savings", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/spark-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/spark-api/v1/savings",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "Spark Savings products (sUSDS / USDS / USDC / USDT) passing through the Sky Savings Rate, by chain. savings_apy is the live yield.",
        "count": 4,
        "source": "DeFiLlama",
        "matched": 4,
        "product": "Spark Savings",
        "savings": [
            {
                "tvl": 325900910,
                "asset": "USDC",
                "chain": "Ethereum",
                "pool_id": "c5c74dd1-995c-4445-9d84-3e710bad7d52",
                "savings_apy": 3.6
            },
            {
                "tvl": 903012,
                "asset": "PYUSD",
                "chain": "Ethereum",
                "pool_id": "4d33c615-a969-4c55-9acf-49d8d14a1063",
                "savings_apy": 3.6
            },
            {
                "tvl": 1102751546,
                "asset": "USDT",
                "chain": "Ethereum",
                "pool_id": "a5d67f7e-5b51-4a9d-969d-caf051a7f5a4",
                "savings_apy": 2.5
            },
            {
                "tvl": 120988106,
                "asset": "ETH",
                "chain": "Ethereum",
                "pool_id": "bace601a-530a-432c-9b79-8c6451de25ea",
                "savings_apy": 1.4
            }
        ],
        "protocol": "Spark"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:23.880Z",
        "request_id": "26d7c2c8-ec93-4474-8f45-e7e0a55e1984"
    },
    "status": "ok",
    "message": "Spark Savings retrieved successfully",
    "success": true
}