Skip to main content
POST
/
explorer
curl --request POST \
  --url https://api.hotstuff.trade/explorer \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "transaction",
    "params": {
        "tx_hash": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
    }
}'
{
  "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": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
    }
}'

Body

application/json
method
string
required
params
object
required

Response

Successful response

tx_hash
string
account
string
block_height
integer
block_hash
string
tx_type
integer
success
boolean
timestamp
integer
created_at
integer