Zum Inhalt springen
GET /v1/supply

ROWAN supply & bonded ratio

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "chain": "Sifchain",
        "denom": "rowan",
        "bonded": 22225218580.01404,
        "symbol": "ROWAN",
        "decimals": 18,
        "total_supply": 52441014621.57428,
        "bonded_ratio_pct": 42.38
    },
    "meta": {
        "timestamp": "2026-06-15T20:40:23.733Z",
        "request_id": "b3a4be32-ee6c-4726-86fb-0da4ffa285a0"
    },
    "status": "ok",
    "message": "Sifchain supply retrieved",
    "success": true
}