Skip to main content
POST
https://api.hotstuff.trade
/
explorer
curl --request POST \
  --url https://api.hotstuff.trade/explorer \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "transaction",
    "params": {
        "tx_hash": "0xxxx"
    }
}'
{
    "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 transaction by its hash, including block information, transaction type, and success status.
curl --request POST \
  --url https://api.hotstuff.trade/explorer \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "transaction",
    "params": {
        "tx_hash": "0xxxx"
    }
}'
{
    "tx_hash": "0x4cb07520655fd427da1574a0ac819b8d60e214b3e3a21fcbd07eee2f90b33029",
    "account": "0x8f10718aDe446Eb99B57953854E1454D4a75A9de",
    "block_height": 162778,
    "block_hash": "0x330ed752d267705a6a30f90b03dded51f7a6013fb61a9dbdae2d128ed8e0eb5d",
    "tx_type": 1301,
    "success": true,
    "timestamp": 1764952788519,
    "created_at": 1764952788
}

Request Body

method
string
default:"transaction"
required
Must be “transaction” for this endpoint
params
object
required