Skip to content
GET /v1/blocks

Latest blocks

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/manta-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/manta-api/v1/blocks" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/manta-api/v1/blocks", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/manta-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/manta-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": "0xd5a44586e54f024d1b76de7333a563fe5fc9b98454a32a30b81565a08db5f42e",
                "size": 1078,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 8668827,
                "gas_used": 1166359,
                "tx_count": 3,
                "gas_limit": 50000000,
                "timestamp": "2026-06-08T09:50:29.000000Z",
                "burnt_fees": "409392009",
                "difficulty": "0",
                "base_fee_per_gas": "351"
            },
            {
                "hash": "0xe69f311423f6cf0cab14aadf6973e2f56c5aa909fecc12cc283bc7afea0770e6",
                "size": 1078,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 8668826,
                "gas_used": 3349886,
                "tx_count": 3,
                "gas_limit": 50000000,
                "timestamp": "2026-06-08T09:50:19.000000Z",
                "burnt_fees": "1175809986",
                "difficulty": "0",
                "base_fee_per_gas": "351"
            },
            {
                "hash": "0xc3884127636f64da8ec119536f14aeb8f64f9ea374e742c8bc66509e0375e9b4",
                "size": 1412,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 8668825,
                "gas_used": 4747767,
                "tx_count": 5,
                "gas_limit": 50000000,
                "timestamp": "2026-06-08T09:50:09.000000Z",
                "burnt_fees": "1666466217",
                "difficulty": "0",
                "base_fee_per_gas": "351"
            },
            {
                "hash": "0x959542b85d692f6aca5aaa907c164dd497682c650c0d1af1def05edfc3493dca",
                "size": 1078,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 8668824,
                "gas_used": 1433896,
                "tx_count": 3,
                "gas_limit": 50000000,
                "timestamp": "2026-06-08T09:49:59.000000Z",
                "burnt_fees": "504731392",
                "difficulty": "0",
                "base_fee_per_gas": "352"
            },
            {
                "hash": "0x94e92c5ac842ebe5a342591b99d75f5492b58aa72eb73f773f84598c287068a7",
                "size": 1209,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 8668823,
                "gas_used": 6046893,
                "tx_count": 4,
                "gas_limit": 50000000,
                "timestamp": "2026-06-08T09:49:49.000000Z",
                "burnt_fees": "2122459443",
                "difficulty": "0",
                "base_fee_per_gas": "351"
            },
            {
                "hash": "0xb845f91a409b6dd04b6a68813d9cc0cf902e6bc28ada5de2880029e53a964362",
                "size": 1212,
                "miner": "0x4200000000000000000000000000000000000011",
 
…