Zum Inhalt springen
GET /v1/network

Steem chain-wide stats

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "time": "2026-06-11T16:47:00Z",
        "chain": "Steem",
        "source": "Steem",
        "head_block": 106851807,
        "sbd_supply": 6580098.606,
        "current_supply": 549682536.119,
        "virtual_supply": 610758372.407,
        "total_vesting_steem": 195463231.061
    },
    "meta": {
        "timestamp": "2026-06-11T16:47:02.952Z",
        "request_id": "242be4a5-5fcb-4567-9860-7ebbb111e6af"
    },
    "status": "ok",
    "message": "Network retrieved successfully",
    "success": true
}