/v1/blocks
Most recent blocks
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/mode-api/v1/blocks" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mode-api/v1/blocks", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mode-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/mode-api/v1/blocks",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 50,
"blocks": [
{
"hash": "0xa56d4cfbddb803e4a511f796d29dd0839c7b428cffde1ad95201278c7deecd2a",
"size": 1027,
"miner": "0x4200000000000000000000000000000000000011",
"height": 40387801,
"gas_used": 607082,
"tx_count": 2,
"gas_limit": 30000000,
"timestamp": "2026-06-08T18:26:25.000000Z",
"burnt_fees": "152984664",
"difficulty": "0",
"base_fee_per_gas": "252"
},
{
"hash": "0x6a1eb4d4da0ac89a4492daab58bddc463e97f1f684c9f40fbd6e1f87d815d4c7",
"size": 1027,
"miner": "0x4200000000000000000000000000000000000011",
"height": 40387800,
"gas_used": 607082,
"tx_count": 2,
"gas_limit": 30000000,
"timestamp": "2026-06-08T18:26:23.000000Z",
"burnt_fees": "152984664",
"difficulty": "0",
"base_fee_per_gas": "252"
},
{
"hash": "0x7766273b53c11becb3bc09fd8f3613240f53282f7b2fdbaf246bcd015fc0910b",
"size": 1027,
"miner": "0x4200000000000000000000000000000000000011",
"height": 40387799,
"gas_used": 607082,
"tx_count": 2,
"gas_limit": 30000000,
"timestamp": "2026-06-08T18:26:21.000000Z",
"burnt_fees": "152984664",
"difficulty": "0",
"base_fee_per_gas": "252"
},
{
"hash": "0x8f7645aec6671f35f357be827de8112a10cb304788f5fee6a69c02f0bf76b2c6",
"size": 1027,
"miner": "0x4200000000000000000000000000000000000011",
"height": 40387798,
"gas_used": 607082,
"tx_count": 2,
"gas_limit": 30000000,
"timestamp": "2026-06-08T18:26:19.000000Z",
"burnt_fees": "152984664",
"difficulty": "0",
"base_fee_per_gas": "252"
},
{
"hash": "0xfff7e68b05865718be2d7818b77202fa2a2ff401a3184773bf78e1f3f06c4927",
"size": 1027,
"miner": "0x4200000000000000000000000000000000000011",
"height": 40387797,
"gas_used": 618270,
"tx_count": 2,
"gas_limit": 30000000,
"timestamp": "2026-06-08T18:26:17.000000Z",
"burnt_fees": "155804040",
"difficulty": "0",
"base_fee_per_gas": "252"
},
{
"hash": "0x2b6b0b1d79ffa9f60d190679c1ff739d53c8605f5d537a265174ebbfd85ef2f5",
"size": 1027,
"miner": "0x4200000000000000000000000000000000000011",
…