Skip to main content
POST
/
explorer
curl --request POST \
  --url https://api.hotstuff.trade/explorer \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "block",
    "params": {
        "block_height": 162778
    }
}'
{
  "block_height": 162778,
  "block_hash": "0x330ed752d267705a6a30f90b03dded51f7a6013fb61a9dbdae2d128ed8e0eb5d",
  "parent_hash": "0xb13f8567e07c8faad2695c953766e04bee36fa134c1a7a07e469244d79a995a8",
  "change_log_hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
  "timestamp": 1764952788519,
  "tx_count": 1,
  "created_at": 1764952788,
  "transactions": [
    {
      "tx_hash": "0x4cb07520655fd427da1574a0ac819b8d60e214b3e3a21fcbd07eee2f90b33029",
      "account": "0x8f10718aDe446Eb99B57953854E1454D4a75A9de",
      "block_height": 162778,
      "block_hash": "0x330ed752d267705a6a30f90b03dded51f7a6013fb61a9dbdae2d128ed8e0eb5d",
      "tx_type": 1301,
      "success": true,
      "timestamp": 1764952788519,
      "created_at": 1764952788
    }
  ]
}
Retrieve detailed information about a specific block including its transactions. Can be queried by block hash or block height.
curl --request POST \
  --url https://api.hotstuff.trade/explorer \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "block",
    "params": {
        "block_height": 162778
    }
}'

Body

application/json
method
string
required
params
object
required

Response

Successful response

block_height
integer
block_hash
string
parent_hash
string
change_log_hash
string
timestamp
integer
tx_count
integer
created_at
integer
transactions
object[]