Skip to content
GET /v1/block

A block by height or hash

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

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

Get an API key

Code snippets

curl "https://api.oanor.com/ronin-api/v1/block" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ronin-api/v1/block", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ronin-api/v1/block");
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/ronin-api/v1/block",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "block": {
            "hash": "0x96be989d5504c57313fa4483de05be03aa45af3e2621038e03e672388e603877",
            "size": 1067,
            "miner": "0x4200000000000000000000000000000000000011",
            "height": 56710390,
            "gas_used": 112399,
            "tx_count": 2,
            "gas_limit": 60000000,
            "timestamp": "2026-06-08T03:32:47.000000Z",
            "burnt_fees": "2247980000000000",
            "difficulty": "0",
            "base_fee_per_gas": "20000000000"
        }
    },
    "meta": {
        "timestamp": "2026-06-08T09:50:23.750Z",
        "request_id": "c1678e43-4ed3-45fd-974e-a4758a2b755a"
    },
    "status": "ok",
    "message": "Block retrieved successfully",
    "success": true
}