Questions? Join our Discord.
curl --request POST \
--url https://api.hotstuff.trade/info \
--header 'Content-Type: application/json' \
--data '{
"method": "open_orders",
"params": {
"user": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
}
}'
{
"data": [
{
"order_id": 153922070,
"user": "0x42C183edba036906447372a7c81Eb89D0B9f2175",
"instrument_id": 1,
"instrument": "BTC-PERP",
"side": "s",
"position_side": "BOTH",
"limit_price": "77731",
"size": "0.0012",
"unfilled": "0.0012",
"state": "open",
"cloid": "8d79218d-1735-418e-b5a5-6ea94a366988",
"tif": "GTC",
"post_only": false,
"reduce_only": false,
"trigger_px": "0",
"is_market": false,
"tpsl": "",
"grouping": "",
"timestamp": "2026-02-03T17:21:30.957Z"
}
],
"page": 1,
"limit": 100,
"total_count": 1,
"total_pages": 1,
"has_next": false,
"has_prev": false
}Send POST request to /info with method: “open_orders”
curl --request POST \
--url https://api.hotstuff.trade/info \
--header 'Content-Type: application/json' \
--data '{
"method": "open_orders",
"params": {
"user": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
}
}'
{
"data": [
{
"order_id": 153922070,
"user": "0x42C183edba036906447372a7c81Eb89D0B9f2175",
"instrument_id": 1,
"instrument": "BTC-PERP",
"side": "s",
"position_side": "BOTH",
"limit_price": "77731",
"size": "0.0012",
"unfilled": "0.0012",
"state": "open",
"cloid": "8d79218d-1735-418e-b5a5-6ea94a366988",
"tif": "GTC",
"post_only": false,
"reduce_only": false,
"trigger_px": "0",
"is_market": false,
"tpsl": "",
"grouping": "",
"timestamp": "2026-02-03T17:21:30.957Z"
}
],
"page": 1,
"limit": 100,
"total_count": 1,
"total_pages": 1,
"has_next": false,
"has_prev": false
}Retrieve all open orders for the authenticated user account.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": "open_orders",
"params": {
"user": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
}
}'