# Hyperliquid Account Open Orders

> Hyperliquid Account Open Orders is a paid API for AI agents from hyperliquid-accounts.use.x402atlas.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns all resting open orders with frontend metadata for a given Hyperliquid account address.

## Facts

- Endpoint: GET https://hyperliquid-accounts.use.x402atlas.com/open-orders
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-account-open-orders-8bcb2af0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RtiXz6QYxIomQkZsWbb-l

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability hyperliquid-account-open-orders-8bcb2af0
```

Example prompt: Show me all the resting open orders for the Hyperliquid account 0x1234567890abcdef1234567890abcdef12345678 — I want to see each order's coin, side, limit price, and size.

## When to prefer this

Use this endpoint when you need to inspect the current resting (unfilled) limit orders for a specific Hyperliquid account, including frontend metadata like order type and trigger. Prefer this over order history endpoints when you need live pending orders rather than filled trade history.

## Known failure modes

- Invalid or malformed 0x address returns a validation error
- Address with no open orders returns count:0 and empty orders array
- Hyperliquid upstream unavailable causes a relay failure
- Missing required address query parameter returns an error
- Non-hex characters in address fail the regex pattern check

## How this service works

A Hyperliquid account's resting open orders with frontend metadata, for any 0x address.

## Output

Returns a JSON object containing the queried address (lowercased), the timestamp of the query, a count of open orders, and a verbatim array of frontendOpenOrders from Hyperliquid — each order includes coin symbol, side (buy/sell), limit price, size, order type, trigger conditions, and timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "pattern": "^0x[0-9a-fA-F]{40}$",
       "description": "0x-prefixed 20-byte Hyperliquid account address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "address",
      "count",
      "orders"
     ],
     "properties": {
      "count": {
       "type": "integer",
       "minimum": 0,
       "description": "Number of open orders returned"
      },
      "orders": {
       "type": "array",
       "items": {
        "type": "object"
       },
       "description": "Upstream Hyperliquid frontendOpenOrders array relayed verbatim — coin, side, limit price, size, order type, trigger, timestamp per order"
      },
      "address": {
       "type": "string",
       "description": "Lower-cased account address queried"
      },
      "queried_at": {
       "type": "string",
       "format": "date-time",
       "description": "Time the upstream was queried"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 0,
  "orders": [],
  "address": "0x0000000000000000000000000000000000000000",
  "queried_at": "2026-07-10T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-account-open-orders-8bcb2af0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hyperliquid-accounts.use.x402atlas.com](https://www.zero.xyz/host/hyperliquid-accounts.use.x402atlas.com/llms.txt)
