/v1/blocks
Most recent blocks
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/flare-api/v1/blocks" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/flare-api/v1/blocks", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/flare-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/flare-api/v1/blocks",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 50,
"blocks": [
{
"hash": "0xc45ca74b6578582b90544b8845b3bc53878e167c2d278ed50070d7696fd45225",
"size": 5022,
"miner": "0x0100000000000000000000000000000000000000",
"height": 62521014,
"gas_used": 2406392,
"tx_count": 4,
"gas_limit": 20019540,
"timestamp": "2026-06-08T18:26:32.000000Z",
"burnt_fees": "570115575331464",
"difficulty": "1",
"base_fee_per_gas": "236917167"
},
{
"hash": "0x84119581b5294d92cd4a506ecb39e678d669baa55fa67018b5baad50471f75aa",
"size": 7080,
"miner": "0x0100000000000000000000000000000000000000",
"height": 62521013,
"gas_used": 759425,
"tx_count": 5,
"gas_limit": 20019540,
"timestamp": "2026-06-08T18:26:31.000000Z",
"burnt_fees": "181208963828225",
"difficulty": "1",
"base_fee_per_gas": "238613377"
},
{
"hash": "0x2998038016568d79f6595531995bfc8735a2c58f1dec15d38c5e7342c3ccb5b5",
"size": 3967,
"miner": "0x0100000000000000000000000000000000000000",
"height": 62521012,
"gas_used": 878072,
"tx_count": 4,
"gas_limit": 20019540,
"timestamp": "2026-06-08T18:26:30.000000Z",
"burnt_fees": "210876082987544",
"difficulty": "1",
"base_fee_per_gas": "240158077"
},
{
"hash": "0x01f837ff3a948ed5024ff13739566e0ba12ff0a6fad069756c439ab19bba7361",
"size": 4773,
"miner": "0x0100000000000000000000000000000000000000",
"height": 62521011,
"gas_used": 2291606,
"tx_count": 4,
"gas_limit": 20019540,
"timestamp": "2026-06-08T18:26:29.000000Z",
"burnt_fees": "549433199619696",
"difficulty": "1",
"base_fee_per_gas": "239759016"
},
{
"hash": "0xe4a5a336580021a51fe3a076acfac4674c6eb0fbfbdc32b53f9d4350bf3d9c5b",
"size": 4540,
"miner": "0x0100000000000000000000000000000000000000",
"height": 62521010,
"gas_used": 520063,
"tx_count": 4,
"gas_limit": 20019540,
"timestamp": "2026-06-08T18:26:28.000000Z",
"burnt_fees": "125755217602643",
"difficulty": "1",
"base_fee_per_gas": "241807661"
},
{
"hash": "0xfff3d42091e9f751d8119b6fc2520255ad478cfe55234993b06493dfc4188982",
"size": 8810,
…