Get block from block height

The block height is used as an identification value to obtain block information in a specific blockchain environment.

Response

NameTypeRequiredDescription
blockObjectTrueObject representing block information.

block object

NameTypeRequiredDescription
baseFeePerGasStringTrueThe minimum fee required per unit of gas for a transaction to be included in a block. (Value not in use)
difficultyStringTrueDifficulty for this block.
extraDataStringTrueThe "extra data" field of this block.
gasLimitStringTrueThe maximum gas allowed in this block.
gasUsedStringTrueThe total used gas by all transactions in this block.
hashStringTrueHash of the block.
logsBloomStringTrueThe bloom filter for the logs of the block.
minerStringTrueThe address of the beneficiary to whom the mining rewards were given.
mixHashStringTrueA hash value used in the proof-of-work algorithm to achieve mining consensus and ensure the integrity of the block's contents. (Value not in use)
nonceStringTrueA value included in a block that miners modify during the mining process, aiming to find a valid hash that satisfies the required difficulty level, thereby securing the block. (Value not in use)
numberNumberTrueNumber(height) of the block.
parentHashStringTrueHash of the parent block.
receiptsRootStringTrueThe root of the receipts trie of the block.
sha3UnclesStringTrueSHA3 of the uncles data in the block.
sizeStringTrueThe size of this block in bytes.
stateRootStringTrueThe root of the final state trie of the block.
timestampStringTrueUnix timestamp.
totalDifficultyStringTrueDifficulty of the chain until this block.
transactionsObject[]TrueObject representing transaction information.
transactionRootStringTrueThe root hash of the tree structure that stores all the transactions within a block.
unclesArrayTrueArray of uncle hashes.

transaction object

NameTypeRequiredDescription
blockHashStringTrueHash of the block.
blockNumberNumberTrueNumber(height) of the block.
fromStringTrueAddress which the transaction was sent from.
gasStringTrueInteger of the gas provided for the transaction execution.
gasPriceStringTrueFixed gas price used for calculating on blockchain environment.
hashStringTrueHash of the transaction.
inputStringTrueInteger of the transactions index position in the block.
nonceStringTrueThe number of transactions made by the sender prior to this one.
toStringTrueAddress which the transaction was sent to.
transactionIndexStringTrueInteger of the transactions index position in the block.
valueStringTrueInteger of the value sent with this transaction.
typeStringTrueIndicates the type of transaction performed on the blockchain network.
vStringTrueValues for the transaction's signature.
rStringTrueValues for the transaction's signature.
sStringTrueValues for the transaction's signature.
parsedInputObjectOptionalNull if smart contract information, which includes the transaction which created this log, is not uploaded to EQ Hub.
Language
Click Try It! to start a request and see the response here!