/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/apechain-api/v1/blocks" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/apechain-api/v1/blocks", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/apechain-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/apechain-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": "0x287bc5dd242b09cd77c5970a5d11009c3ec570bf308cc3794e421e39881381b1",
"size": 953,
"miner": "0xA4b000000000000000000073657175656e636572",
"height": 39386157,
"gas_used": 172464,
"tx_count": 2,
"gas_limit": 1125899906842624,
"timestamp": "2026-06-08T09:48:59.000000Z",
"burnt_fees": "17536615520640000",
"difficulty": "1",
"base_fee_per_gas": "101682760000"
},
{
"hash": "0xf878d86b77249b4a4d62ef08dd6f51521a8674094c1a763826eb7fed750411a2",
"size": 1214,
"miner": "0xA4b000000000000000000073657175656e636572",
"height": 39386156,
"gas_used": 859929,
"tx_count": 2,
"gas_limit": 1125899906842624,
"timestamp": "2026-06-08T09:48:58.000000Z",
"burnt_fees": "87439954124040000",
"difficulty": "1",
"base_fee_per_gas": "101682760000"
},
{
"hash": "0x9c113c2b4d505ee0a8f92809170fa7ce30c89df865adb4b4bae88e201957412b",
"size": 953,
"miner": "0xA4b000000000000000000073657175656e636572",
"height": 39386155,
"gas_used": 320048,
"tx_count": 2,
"gas_limit": 1125899906842624,
"timestamp": "2026-06-08T09:48:57.000000Z",
"burnt_fees": "32543363972480000",
"difficulty": "1",
"base_fee_per_gas": "101682760000"
},
{
"hash": "0x12841779236d86ed7fc9cff660834222df5c69e89535133abbd232ed38910765",
"size": 975,
"miner": "0xA4b000000000000000000073657175656e636572",
"height": 39386154,
"gas_used": 42176,
"tx_count": 2,
"gas_limit": 1125899906842624,
"timestamp": "2026-06-08T09:48:55.000000Z",
"burnt_fees": "4288572085760000",
"difficulty": "1",
"base_fee_per_gas": "101682760000"
},
{
"hash": "0x4cb321067adc85e6c74d2970e8c3beec1c850c7b491e92fbb7d1d0843e6e0008",
"size": 3140,
"miner": "0xA4b000000000000000000073657175656e636572",
"height": 39386153,
"gas_used": 2240536,
"tx_count": 2,
"gas_limit": 1125899906842624,
"timestamp": "2026-06-08T09:48:54.000000Z",
"burnt_fees": "227823884359360000",
"difficulty": "1",
"base_fee_per_gas": "101682760000"
},
{
"hash": "0x131c17d4a02f0fff7deb008455ba0ceafe928377bc1855d252
…