Get all open orders for an account on Hyperliquid.
cURL
curl --request GET \ --url https://api.example.com/v1/perps/hyperliquid/account/{address}/orders
POST /info
{ "type": "openOrders", "user": "<address>" }
curl -H "X-API-Key: $API_KEY" \ https://api.perps.studio/v1/perps/hyperliquid/account/0x1234.../orders
[ { "orderId": "9876543210", "symbol": "ETH", "side": "buy", "type": "limit", "price": "3200.00", "size": "1.0000", "filledSize": "0", "status": "open", "createdAt": 1712000000000 } ]
GET /v1/perps/hyperliquid/account/{address}/orders/{orderId}