Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/sky-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "note": "SSR is the Sky Savings Rate (on USDS); DSR is the DAI Savings Rate. Rates are returned as percentages. The history endpoint returns the daily savings-rate series, oldest to newest.",
        "source": "BlockAnalitica Sky analytics (info-sky.blockanalitica.com/api/v1, live)",
        "service": "sky-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/history": "Daily savings-rate timeline (limit=30, max 365).",
            "GET /v1/savings": "Current savings rates — live SSR and DSR and the value deposited in each.",
            "GET /v1/overview": "Latest Sky ecosystem snapshot — SSR APY, savings TVL, SKY staking APY, ecosystem TVL, wallets."
        },
        "description": "Live protocol stats from Sky, the decentralized stablecoin protocol formerly known as MakerDAO (issuer of USDS/DAI). The Sky-protocol view — the Sky Savings Rate (SSR) and DAI Savings Rate (DSR), the value locked in savings, the SKY staking yield and the overall ecosystem size. overview = the latest ecosystem snapshot (Sky Savings Rate APY, savings TVL, SKY staking APY, farm APY, total reward TVL, ecosystem TVL, wallet count, savings depositor count); savings = the current savings rates (live SSR and DSR and the value deposited in each); history = the savings-rate timeline (per-day SSR, DSR and deposited totals). Live, no key, nothing stored. Distinct from the generic DeFi-TVL, yields and lending APIs.",
        "upstream_status": "ok",
        "current_ssr_apy_pct": 3.6
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:32.504Z",
        "request_id": "69b8af12-722d-44ac-baf5-7961fa9b7e48"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}