Skip to main content
POST
https://api.hotstuff.trade
/
info
curl --request POST \
  --url https://api.hotstuff.trade/info \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "accountHistory",
    "params": {
        "user": "0xxxx"
    }
}'
[
   {
        "address": "0xdE66c594AF8e4AD2C62DcFadCb6714F8b176A4ef",
        "total_pnl": "-22970142.870113",
        "total_volume": 61310268146,
        "account_value": "225475874.025176",
        "created_at": "2026-02-03T17:00:01.841Z"
    },
]
Retrieve historical account data including total PnL, total volume, account value, and timestamps for a user.
curl --request POST \
  --url https://api.hotstuff.trade/info \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "accountHistory",
    "params": {
        "user": "0xxxx"
    }
}'
[
   {
        "address": "0xdE66c594AF8e4AD2C62DcFadCb6714F8b176A4ef",
        "total_pnl": "-22970142.870113",
        "total_volume": 61310268146,
        "account_value": "225475874.025176",
        "created_at": "2026-02-03T17:00:01.841Z"
    },
]

Request Body

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