Zum Inhalt springen
GET /v1/supply

Coin supply: circulating/max KAS, percent mined, current block reward

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/kaspametrics-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Kaspa coin supply: the circulating and maximum KAS (Kaspa caps at ~28.7 billion), the percent of the supply already mined and the current per-block reward. The reward shrinks on a smooth monthly halving curve.",
        "source": "Kaspa REST",
        "max_kas": 28704035605,
        "pct_mined": 95.8358,
        "circulating_kas": 27508742214.4754,
        "block_reward_kas": 2.59565436
    },
    "meta": {
        "timestamp": "2026-06-14T17:04:31.816Z",
        "request_id": "5bbd2415-8651-49ab-b275-0f4bf9470d6a"
    },
    "status": "ok",
    "message": "Supply retrieved successfully",
    "success": true
}