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/lisk-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/lisk-api/v1/blocks" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lisk-api/v1/blocks", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lisk-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/lisk-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": "0x5d8cf2169fa0b3ddee32003d50850527b5307e3e99fa2c91563f0bc4ffa6d933",
                "size": 908,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 33091749,
                "reward": "-46935630",
                "gas_used": 46242,
                "tx_count": 1,
                "gas_limit": 60000000,
                "timestamp": "2026-06-08T09:51:29.000000Z",
                "burnt_fees": "46935630",
                "difficulty": "0",
                "base_fee_per_gas": "1015"
            },
            {
                "hash": "0x3660acfbed660d8447d9b6d5edcc7ac84c215b386a41f8c55939977eb4a27e34",
                "size": 908,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 33091748,
                "reward": "-46935630",
                "gas_used": 46242,
                "tx_count": 1,
                "gas_limit": 60000000,
                "timestamp": "2026-06-08T09:51:27.000000Z",
                "burnt_fees": "46935630",
                "difficulty": "0",
                "base_fee_per_gas": "1015"
            },
            {
                "hash": "0x460495d52000fd3df3201a24f4f3b9a8a05f5f8a06b22d1bc34aa30c4162c3f5",
                "size": 908,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 33091747,
                "reward": "-46935630",
                "gas_used": 46242,
                "tx_count": 1,
                "gas_limit": 60000000,
                "timestamp": "2026-06-08T09:51:25.000000Z",
                "burnt_fees": "46935630",
                "difficulty": "0",
                "base_fee_per_gas": "1015"
            },
            {
                "hash": "0xdbd7127a994b8b09ae2cb9283a205f605a7ea35a2ccce55915b0b4b7a367a899",
                "size": 908,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 33091746,
                "reward": "-46935630",
                "gas_used": 46242,
                "tx_count": 1,
                "gas_limit": 60000000,
                "timestamp": "2026-06-08T09:51:23.000000Z",
                "burnt_fees": "46935630",
                "difficulty": "0",
                "base_fee_per_gas": "1015"
            },
            {
                "hash": "0x643353225340c2441bde8f7e94ede4336a845d82a29dbe6be835840829f0b1ac",
                "size": 908,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 33091745,
                "reward": "-46935630",
                "gas_used": 46242,
                "tx_count": 1,
                "gas_limit": 60000000,
                "timestamp": "2026-06-08T09:51:21.000000Z",
                "burnt_fees": "46935630",
                "difficulty": "0",
                "base_fee_per_gas": "1015"
            },
            {
              
…