Naar de inhoud
GET /v1/supply

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

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/cardanochain-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}