Μετάβαση στο περιεχόμενο
GET /v1/blocks

Most recent blocks

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/mchverse-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "count": 50,
        "blocks": [
            {
                "hash": "0xf018f28d572aa5c966f77b2c2f5e2e5d5623d93e35c3fd021b9159a478c60f92",
                "size": 839,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 61863642,
                "gas_used": 49355,
                "tx_count": 1,
                "gas_limit": 30000000,
                "timestamp": "2026-06-08T18:25:31.000000Z",
                "burnt_fees": "0",
                "difficulty": "0",
                "base_fee_per_gas": "0"
            },
            {
                "hash": "0xa0e17b27e036992199fff46478f6fcb68f06a578c8343c661e50a51be9dc3708",
                "size": 839,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 61863641,
                "gas_used": 43767,
                "tx_count": 1,
                "gas_limit": 30000000,
                "timestamp": "2026-06-08T18:25:30.000000Z",
                "burnt_fees": "0",
                "difficulty": "0",
                "base_fee_per_gas": "0"
            },
            {
                "hash": "0x5f587042cfb86d2ee6e9897d8bd0959bb80baaf1f27171c0526cb5c9d6a18c6c",
                "size": 839,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 61863640,
                "gas_used": 43767,
                "tx_count": 1,
                "gas_limit": 30000000,
                "timestamp": "2026-06-08T18:25:29.000000Z",
                "burnt_fees": "0",
                "difficulty": "0",
                "base_fee_per_gas": "0"
            },
            {
                "hash": "0xd6f3cb4e3909212eeb934e5e50d638c53a90ae92001b82bc66464ad5b4d73c0a",
                "size": 839,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 61863639,
                "gas_used": 43767,
                "tx_count": 1,
                "gas_limit": 30000000,
                "timestamp": "2026-06-08T18:25:28.000000Z",
                "burnt_fees": "0",
                "difficulty": "0",
                "base_fee_per_gas": "0"
            },
            {
                "hash": "0xca61482ce45890a504b09b9776d74951619d4a6e3c11f3553d716d22d2f5a4d4",
                "size": 839,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 61863638,
                "gas_used": 43767,
                "tx_count": 1,
                "gas_limit": 30000000,
                "timestamp": "2026-06-08T18:25:27.000000Z",
                "burnt_fees": "0",
                "difficulty": "0",
                "base_fee_per_gas": "0"
            },
            {
                "hash": "0x0d9b36614fcc0958000043d9cac5dfdc33b37ac202367a77d79763806af92c93",
                "size": 839,
                "miner": "0x4200000000000000000000000000000000000011",
                "height": 61863637,
                "gas_used": 4
…