/v1/blocks
Latest 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/goat-api/v1/blocks" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/goat-api/v1/blocks", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/goat-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/goat-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": "0x7b6a54121cdc7a2fbba7a249c24dc9931fbccd5abc96059c2c6cf69d56b1ddc2",
"size": 648,
"miner": "0xA95BfFd6e8696D576bfe17daE08364642cdf8d5C",
"height": 12925932,
"gas_used": 0,
"tx_count": 0,
"gas_limit": 60000000,
"timestamp": "2026-06-08T09:50:11.000000Z",
"burnt_fees": "0",
"difficulty": "0",
"base_fee_per_gas": "7"
},
{
"hash": "0xb8037f85c24765f0fcbea1fb719b1024fe0e951cdeec48c67631d6fd94947a89",
"size": 648,
"miner": "0xDc14833d92d96d7D058d6C34DAd6b759E75a993a",
"height": 12925931,
"gas_used": 0,
"tx_count": 0,
"gas_limit": 60000000,
"timestamp": "2026-06-08T09:50:07.000000Z",
"burnt_fees": "0",
"difficulty": "0",
"base_fee_per_gas": "7"
},
{
"hash": "0xa9974b4a791d72524fbe476823074dd12be3b133c126e0755f11076720b3c66f",
"size": 648,
"miner": "0xA95BfFd6e8696D576bfe17daE08364642cdf8d5C",
"height": 12925930,
"gas_used": 0,
"tx_count": 0,
"gas_limit": 60000000,
"timestamp": "2026-06-08T09:50:04.000000Z",
"burnt_fees": "0",
"difficulty": "0",
"base_fee_per_gas": "7"
},
{
"hash": "0x3c88cee0ebd5e98811bdd03ed1d45de81636b4271693d4443cb08256a3b0f4e0",
"size": 998,
"miner": "0x7D6178339E9E5afC467a7D6Efc1e81Ea2d16B32a",
"height": 12925929,
"gas_used": 120367,
"tx_count": 1,
"gas_limit": 60000000,
"timestamp": "2026-06-08T09:50:01.000000Z",
"burnt_fees": "842569",
"difficulty": "0",
"base_fee_per_gas": "7"
},
{
"hash": "0xe60aea3dde8c8b3c40151cd9e85c904cdc51545e6e904e1a9f55cd12c5dee250",
"size": 998,
"miner": "0xDc14833d92d96d7D058d6C34DAd6b759E75a993a",
"height": 12925928,
"gas_used": 130099,
"tx_count": 1,
"gas_limit": 60000000,
"timestamp": "2026-06-08T09:49:57.000000Z",
"burnt_fees": "910693",
"difficulty": "0",
"base_fee_per_gas": "7"
},
{
"hash": "0x764b0fc4d836c739783dd848a6e5924184c59b897cfa1ebef0113ea8ba3a1db2",
"size": 648,
"miner": "0xA95BfFd6e8696D576bfe17daE08364642cdf8d5C",
"height": 12925927,
"gas_used": 0
…