Login
Registration
Login
Registration
  • 👉 Welcome
  • 🧐 How to set up an account
  • 📈 Monitoring and analytics
  • 🔍 Introducing coins vs tokens
  • 👨‍💼 The meaning of owning crypto
  • 💰 Wallets
  • 📜 Supported Blockchains
  • API REFERENCE
    • Bitcoin
      • 🔍 Info
        • 🧐 Check BTC node health
        • 📜 Get latest Bitcoin block
      • 🆎 Block
        • 📈 Get Bitcoin block by height
        • 👨‍💻 Get Bitcoin block by hash
        • 📑 Get transaction count in block by height
        • 📑 Get transaction count in block by hash
      • 💰 Transactions
        • 👨‍💻 Get Bitcoin transaction by hash
        • 📝 Send pre-signed raw Bitcoin transaction
      • 👨‍💼 Account
        • 💰 List BTC addresses managed by node wallet
        • 🆎 Get BTC received amount for address
      • 🔍 JSON-RPC
    • Ethereum
      • 🔍 Info
        • 🧐 Check ETH node health
        • 📜 Get latest Ethereum block
      • 🆎 Block
        • 📈 Get Ethereum block by height
        • 👨‍💻 Get Ethereum block by hash
        • 📑 Get transaction count in block by height
        • 📑 Get transaction count in block by hash
      • 💰 Transactions
        • 👨‍💻 Get Ethereum transaction by hash
        • 👨‍💻 Get Ethereum transaction receipt by hash
        • 📝 Send pre-signed raw Ethereum transaction
      • 👨‍💼 Account
        • 🔍 List ETH accounts managed by node
        • 🆎 Get ETH balance for address
        • 🆎 Get transaction count (nonce) for address
        • 👉 Estimate gas for transaction
        • 📑 Read-only contract call (eth_call)
        • 👨‍💼 Get ETH received amount for address
      • 🔍 JSON-RPC
    • Tron
      • 🔍 Info
        • 📑 Get TRX node info
        • 🧐 Check Tron node health
      • 🆎 Block
        • 📜 Get latest Tron block
        • 📜 Get latest N blocks
        • 🟠 Get block by number
        • 👨‍💻 Get block by hash
      • 💰 Transactions
        • 👨‍💻 Get transaction by hash
        • 🆎 Get all transactions for an address
      • 👨‍💼 Account
        • 🆎 Validate a Tron address
        • 🔍 Get account information
        • 💰 Get account balance
        • 🆎 Create a new Tron address
        • 💵 Generate a private key from a mnemonic
        • 📊 Send TRX from one address to another
        • 📊 Send USDT (TRC20) from one address to another
      • ✳️ Webhooks
        • 👨‍📜 List webhooks
        • 🧐 Create webhook
        • 👉 Get webhook
        • 👨‍🔁 Get transaction by hash
        • ❌ Get all transactions for an address
      • 📊 Schemas

👨‍💻 Get Ethereum block by hash

Code samples

GET /api/v1/eth/block/hash/{blockHash}

Returns a block by its hash using eth_getBlockByHash.

🛠️ Parameters

NameInTypeRequiredDescription
blockHashpathstringtrueEthereum block hash.

Example responses

200 Response

{
  "number": "0x1234abcd",
  "hash": 0,
  "parentHash": "string",
  "nonce": "string",
  "sha3Uncles": "string",
  "logsBloom": "string",
  "transactionsRoot": "string",
  "stateRoot": "string",
  "receiptsRoot": "string",
  "miner": "string",
  "difficulty": "string",
  "totalDifficulty": "string",
  "extraData": "string",
  "size": "string",
  "gasLimit": "string",
  "gasUsed": "string",
  "timestamp": "string",
  "baseFeePerGas": "string",
  "transactions": [
    "string"
  ],
  "uncles": [
    "string"
  ]
}

🔁 Responses

StatusMeaningDescriptionSchema
200OKEthereum blockEthBlock
500Internal Server ErrorCould not connect to ETH nodeNone
To perform this operation, you must be authenticated by means of one of the following methods: ApiKeyAuth
Prev
📈 Get Ethereum block by height
Next
📑 Get transaction count in block by height