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": "trades",
    "params": {
        "symbol": "BTC-PERP"
    }
}'
[
    {
        "instrument_id": 1,
        "instrument": "BTC-PERP",
        "trade_id": 8962137099781767349,
        "tx_hash": "0x832c819003c15743dc4c03fa7b796b413100ef0bbd26db745d71ea4ff05914d3",
        "side": "s",
        "price": "77309",
        "size": "0.06229",
        "maker": "0x1c06528675fE5C197bB90029b4266506a13b33E2",
        "taker": "0xa4611302A790D96444abdE9f225d7fB28a7889C3",
        "timestamp": "2026-02-03T17:00:57.558Z"
    },
]
Retrieve recent trade history for specified trading instruments.
curl --request POST \
  --url https://api.hotstuff.trade/info \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "trades",
    "params": {
        "symbol": "BTC-PERP"
    }
}'
[
    {
        "instrument_id": 1,
        "instrument": "BTC-PERP",
        "trade_id": 8962137099781767349,
        "tx_hash": "0x832c819003c15743dc4c03fa7b796b413100ef0bbd26db745d71ea4ff05914d3",
        "side": "s",
        "price": "77309",
        "size": "0.06229",
        "maker": "0x1c06528675fE5C197bB90029b4266506a13b33E2",
        "taker": "0xa4611302A790D96444abdE9f225d7fB28a7889C3",
        "timestamp": "2026-02-03T17:00:57.558Z"
    },
]

Request Body

method
string
default:"trades"
required
Must be “trades” for this endpoint
params
object
default:"{\"symbol\": \"BTC-PERP\"}"
required