/v1/network
Steem chain-wide stats
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}