Skip to main content
POST
/
explorer
curl --request POST \
  --url https://api.hotstuff.trade/explorer \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "transactions",
    "params": {
        "filter": {
            "account": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
        }
    }
}'
{
  "transactions": [
    {
      "tx_hash": "0xebd4145f3380175f8071c13acb256536dde1b502d757a8fdf3aafb5a8421fcef",
      "account": "0x047C6C84cd4870C13D0af48d52404229451B300f",
      "block_height": 88773309,
      "block_hash": "0x13e7eb82132518f863f66066d0a5a5f6afe6eceead04150bcf706d9d8a90ca6d",
      "tx_type": 1203,
      "success": true,
      "timestamp": 1770140105649,
      "created_at": 1770140105
    }
  ],
  "total": 61488937,
  "limit": 1,
  "offset": 0
}
Retrieve a paginated list of transactions with optional filtering by account. Returns transaction details including hash, block information, transaction type, and success status.
curl --request POST \
  --url https://api.hotstuff.trade/explorer \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "transactions",
    "params": {
        "filter": {
            "account": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
        }
    }
}'

Body

application/json
method
string
required
params
object
required

Response

Successful response

transactions
object[]
total
integer
limit
integer
offset
integer