Home

Get open orders

POST
https://hype.nownodes.io/info

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Queries the Hyperliquid exchange for all open orders belonging to the given Ethereum wallet address. The request body must contain "type": "openOrders" and a valid 0x-prefixed user address. The response returns an array of order objects, or an empty array if no open orders exist.

Body

application/json
typestringrequired

Operation type. Must be the exact string "openOrders" (case-sensitive).

userstringrequired

Ethereum wallet address of the user whose open orders you want to fetch. Format: 0x-prefixed hexadecimal string, 42 characters long (e.g. 0x31ca...974b). No checksum requirement is enforced, but the address must exist on the exchange.

Response

200OK

A JSON array containing all currently open orders for the specified user. Each order object includes full details: coin symbol, side, limit price, current size, order ID, timestamp, and original size. If there are no open orders, the array is empty.