Skip to main content
POST
/
info
curl --request POST \
  --url https://api.hotstuff.trade/info \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "orderbook",
    "params": {
        "symbol": "BTC-PERP"
    }
}'
{
  "instrument_name": "PUMP-PERP",
  "bids": [
    {
      "price": 0.002408,
      "size": 3004045
    }
  ],
  "asks": [
    {
      "price": 0.002412,
      "size": 5474
    }
  ],
  "sequence_number": 12305069,
  "timestamp": 1770137902924
}

Documentation Index

Fetch the complete documentation index at: https://docs.hotstuff.trade/llms.txt

Use this file to discover all available pages before exploring further.

Retrieve current order book data with bid and ask levels for specified trading instruments.
curl --request POST \
  --url https://api.hotstuff.trade/info \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "orderbook",
    "params": {
        "symbol": "BTC-PERP"
    }
}'

Body

application/json
method
string
required
params
object
required

Response

Successful response

instrument_name
string
bids
object[]
asks
object[]
sequence_number
integer
timestamp
integer