GET
/
v1
/
perps
/
hyperliquid
/
account
/
{address}
/
orders
Get Open Orders
curl --request GET \
  --url https://api.example.com/v1/perps/hyperliquid/account/{address}/orders

Upstream Mapping

Maps to Hyperliquid’s POST /info with { "type": "openOrders", "user": "<address>" }.

Request

address
string
required
Wallet address

Example

curl -H "X-API-Key: $API_KEY" \
  https://api.perps.studio/v1/perps/hyperliquid/account/0x1234.../orders
Example Response
[
  {
    "orderId": "9876543210",
    "symbol": "ETH",
    "side": "buy",
    "type": "limit",
    "price": "3200.00",
    "size": "1.0000",
    "filledSize": "0",
    "status": "open",
    "createdAt": 1712000000000
  }
]

Get Single Order Status

GET /v1/perps/hyperliquid/account/{address}/orders/{orderId}
Returns the full order status including fill history.