Skip to main content
POST
/
info
curl --request POST \
  --url https://api.hotstuff.trade/info \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "bbo",
    "params": {
        "symbol": "all"
    }
}'
[
  {
    "symbol": "ETH-PERP",
    "best_bid_price": "2455.2",
    "best_ask_price": "2475.2",
    "best_bid_size": "8.9472",
    "best_ask_size": "5.4876"
  },
  {
    "symbol": "SOL-PERP",
    "best_bid_price": "101.91",
    "best_ask_price": "101.95",
    "best_bid_size": "2000.24",
    "best_ask_size": "421.73"
  }
]

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 best bid and offer (BBO) data for trading instruments.
curl --request POST \
  --url https://api.hotstuff.trade/info \
  --header 'Content-Type: application/json' \
  --data '{
    "method": "bbo",
    "params": {
        "symbol": "all"
    }
}'

Body

application/json
method
string
required
params
object
required

Response

Successful response

symbol
string
best_bid_price
string
best_ask_price
string
best_bid_size
string
best_ask_size
string