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": "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"
    },
]
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"
    }
}'
[
    {
        "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"
    },
]

Request Body

method
string
default:"bbo"
required
Must be “bbo” for this endpoint
params
object
default:"{\"symbol\": \"all\"}"