Zum Inhalt springen
GET /v1/meta

Service metadata

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

Beispiel-Response

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

{
    "data": {
        "sample": {
            "pct_mined": 95.8358,
            "circulating_kas": 27508742214.4754
        },
        "source": "public Kaspa REST API (api.kaspa.org), keyless",
        "service": "kaspametrics-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/supply": "Coin supply: circulating/max KAS, percent mined, current block reward.",
            "GET /v1/halving": "The next emission halving: timestamp, date and the reward it drops to.",
            "GET /v1/hashrate": "Live hashrate (TH/s) and BlockDAG state: block/header counts, tips, difficulty."
        },
        "description": "Read Kaspa's network economics and BlockDAG state live from the public Kaspa REST API: the live hashrate and BlockDAG state (block/header counts, tips, difficulty), the coin supply (circulating/max KAS, percent mined, block reward) and the next emission halving (timestamp, date, new reward). The mining-and-economics layer for Kaspa miners, wallets and explorers. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T17:04:31.913Z",
        "request_id": "2c79eef1-9122-4b8c-92df-d769f4cf9a4c"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}