Vai al contenuto
GET /v1/supply

ADA monetary breakdown: supply, circulating, reserves, treasury, rewards

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/cardanochain-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "Cardano's ADA monetary breakdown for the epoch: total supply, circulating, reserves (unissued), treasury (governance funds) and the reward pot. Max supply is 45,000,000,000 ADA.",
        "epoch": 637,
        "source": "Koios",
        "reserves_ada": 6307350175.048889,
        "treasury_ada": 1486632640.502068,
        "max_supply_ada": 45000000000,
        "reward_pot_ada": 826656960.494501,
        "circulating_ada": 36373183721.42929,
        "total_supply_ada": 38692649824.95111
    },
    "meta": {
        "timestamp": "2026-06-14T08:03:53.203Z",
        "request_id": "f3ac577e-ee26-44cd-a4f9-dfe293303e5f"
    },
    "status": "ok",
    "message": "Supply retrieved successfully",
    "success": true
}