Open orders
Resting limit and trigger orders, fetched live.
/networks/{network}/wallets/{address}/open-ordersOpen orders are read live from the exchange, not from cached profile history, so set a conservative timeout and expect the occasional slow response.
Network identifier. Only hyperliquid is supported.
Example: hyperliquid
Wallet address — 0x followed by 40 lowercase hex characters.
Example: 0x1111111111111111111111111111111111111111
Maximum number of items to return. Hard cap 500.
Example: 25
Responses
200OK
Live open orders from the upstream exchange.
Open orders.
Order asset symbol.
Order side — B (buy) or A (ask/sell).
Order type, e.g. Limit.
Limit price.
Remaining size.
Original order size.
Whether the order only reduces a position.
Whether the order is a trigger order.
Trigger price if applicable.
Trigger condition if applicable.
Time in force, e.g. Gtc.
Exchange order id.
Order creation time.
400Bad Request
401Unauthorized
404Not Found
500Server Error
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/wallets/0x1111111111111111111111111111111111111111/open-orders?limit=2" \
-H "X-API-Key: hlsk_your_developer_key"{
"items": [
{
"coin": "BTC",
"side": "B",
"orderType": "Limit",
"price": "65000",
"size": "0.25",
"originalSize": "0.25",
"reduceOnly": false,
"isTrigger": false,
"triggerPrice": null,
"triggerCondition": null,
"tif": "Gtc",
"orderId": "912345678",
"createdAt": "2026-06-12T11:50:00Z"
}
]
}