Questions? Join our Discord.
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
}Send POST request to /info with method: “orderbook”
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
}Retrieve current order book data with bid and ask levels for specified trading instruments.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.
curl --request POST \
--url https://api.hotstuff.trade/info \
--header 'Content-Type: application/json' \
--data '{
"method": "orderbook",
"params": {
"symbol": "BTC-PERP"
}
}'