/v1/block
A block by height or hash
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/fuse-api/v1/block" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fuse-api/v1/block", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fuse-api/v1/block");
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/fuse-api/v1/block",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"block": {
"hash": "0xa7c17967c812931ee4ad0c4a1b616ccc24c0d5b770e1a24eafe1935e82a3f5a8",
"size": 1731,
"miner": "0xa7Ca8178558945BeC5C40E6666C7aC493C9E13cC",
"height": 42381076,
"reward": "5264762445900",
"gas_used": 411014,
"tx_count": 3,
"gas_limit": 20000000,
"timestamp": "2026-06-08T05:56:55.000000Z",
"burnt_fees": "4110140000000000",
"difficulty": "340282366920938463463374607431768211454",
"base_fee_per_gas": "10000000000"
}
},
"meta": {
"timestamp": "2026-06-08T09:49:28.589Z",
"request_id": "4d05f087-c97b-48e5-b9d7-303fea931dfe"
},
"status": "ok",
"message": "Block retrieved successfully",
"success": true
}