/v1/blocks
Latest blocks
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/unit0-api/v1/blocks" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/unit0-api/v1/blocks", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/unit0-api/v1/blocks");
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/unit0-api/v1/blocks",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 50,
"blocks": [
{
"hash": "0x0a53a2b8726544704f30bb4186684ecb413f1f1f118ee80fae9f9d754869fe49",
"size": 607,
"miner": "0xd65cF180721D31346aA4199dD110204287919507",
"height": 11716343,
"gas_used": 0,
"tx_count": 0,
"gas_limit": 30000000,
"timestamp": "2026-06-08T09:48:47.000000Z",
"burnt_fees": "0",
"difficulty": "0",
"base_fee_per_gas": "7"
},
{
"hash": "0x1cb4b9afa9b7d7c24d2f1f85df01890e6ae5dd1de3e87baf0c56f0f877640486",
"size": 607,
"miner": "0xd65cF180721D31346aA4199dD110204287919507",
"height": 11716342,
"gas_used": 0,
"tx_count": 0,
"gas_limit": 30000000,
"timestamp": "2026-06-08T09:48:45.000000Z",
"burnt_fees": "0",
"difficulty": "0",
"base_fee_per_gas": "7"
},
{
"hash": "0x9b316c796914b52b678f7bb872cd86e745c75bdf2a89e5750543937d9f70b0e3",
"size": 607,
"miner": "0xd65cF180721D31346aA4199dD110204287919507",
"height": 11716341,
"gas_used": 0,
"tx_count": 0,
"gas_limit": 30000000,
"timestamp": "2026-06-08T09:48:43.000000Z",
"burnt_fees": "0",
"difficulty": "0",
"base_fee_per_gas": "7"
},
{
"hash": "0x457e3df2648cfc6684e08a730309ddcff7f1734680f191e42087e2cd7575475b",
"size": 607,
"miner": "0xd65cF180721D31346aA4199dD110204287919507",
"height": 11716340,
"gas_used": 0,
"tx_count": 0,
"gas_limit": 30000000,
"timestamp": "2026-06-08T09:48:41.000000Z",
"burnt_fees": "0",
"difficulty": "0",
"base_fee_per_gas": "7"
},
{
"hash": "0xd3072267b01046c53c2b219771f5f16ab785b04bf7c959ecf73542f77dbcdbf4",
"size": 607,
"miner": "0xd65cF180721D31346aA4199dD110204287919507",
"height": 11716339,
"gas_used": 0,
"tx_count": 0,
"gas_limit": 30000000,
"timestamp": "2026-06-08T09:48:39.000000Z",
"burnt_fees": "0",
"difficulty": "0",
"base_fee_per_gas": "7"
},
{
"hash": "0xcecf6b6ba61fbb93e6b8fed0e7cc8908b884f093e4fb46eba5cbc5923cab3d6f",
"size": 607,
"miner": "0xd65cF180721D31346aA4199dD110204287919507",
"height": 11716338,
"gas_used": 0,
"t
…