v2

latestOpenAPI 3.1.02026-08-0888266502.2 KB
EVM Blocks

Get block

Gets the details of an individual block on the EVM-compatible chain.

get/v1/chains/{chainId}/blocks/{blockId}

Path parameters

chainIdstring required

A supported evm chain id or blockchain id. Use the /chains endpoint to get a list of supported chain ids.

blockIdstring required

A block identifier which is either a block number or the block hash.

Response

Successful response

chainIdstring required

The EVM chain ID on which the block was created.

blockNumberstring required

The block number on the chain.

blockTimestampnumber required

The block creation (proposal) timestamp in seconds

blockTimestampMillisecondsnumber

The block creation (proposal) timestamp in milliseconds. Available only after Granite upgrade.

blockMinDelayExcessnumber

Minimum block delay in milliseconds. Available only after Granite upgrade.

blockHashstring required

The block hash identifier.

txCountnumber required

The number of evm transactions in the block.

baseFeestring required

The base gas fee for a transaction to be included in the block.

gasUsedstring required

The gas used for transactions in the block.

gasLimitstring required

The total gas limit set for transactions in the block.

gasCoststring required
parentHashstring required

The hash of the parent block.

feesSpentstring required

The amount of fees spent/burned for transactions in the block.

cumulativeTransactionsstring required

The cumulative number of transactions for the chain including this block.

Example response

{
  "chainId": "43114",
  "blockNumber": "339",
  "blockTimestamp": 1648672486,
  "blockTimestampMilliseconds": 1648672486000,
  "blockMinDelayExcess": 7477290,
  "blockHash": "0x17533aeb5193378b9ff441d61728e7a2ebaf10f61fd5310759451627dfca2e7c"
}