> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vatic.trading/llms.txt
> Use this file to discover all available pages before exploring further.

# List Orders

> Returns open orders for a user's trading wallet. Passes through Polymarket CLOB pagination. Supports filtering by market condition ID, outcome token ID, or specific order hash.



## OpenAPI

````yaml GET /api/v1/orders
openapi: 3.1.0
info:
  title: Vatic API
  version: 1.0.0
  description: >-
    Polymarket price targets, Hyperliquid prediction market data, market
    timestamps, fee calculators, and order management for systematic prediction
    market trading.
servers:
  - url: https://api.vatic.trading
    description: Production
security: []
paths:
  /api/v1/orders:
    get:
      tags:
        - Orders
      summary: List open orders
      description: >-
        Returns open orders for a user's trading wallet. Passes through
        Polymarket CLOB pagination. Supports filtering by market condition ID,
        outcome token ID, or specific order hash.
      operationId: getOrders
      parameters:
        - name: walletId
          in: query
          required: true
          schema:
            type: string
            format: uuid
          description: UUID from `user_trading_wallets` table.
        - name: market
          in: query
          schema:
            type: string
          description: Filter by market condition ID.
        - name: asset_id
          in: query
          schema:
            type: string
          description: Filter by outcome token ID.
        - name: id
          in: query
          schema:
            type: string
          description: Fetch a specific order by hash.
        - name: next_cursor
          in: query
          schema:
            type: string
          description: Pagination cursor from a previous response.
      responses:
        '200':
          description: Orders list
          content:
            application/json:
              example:
                ok: true
                data: []
                next_cursor: MA==
        '401':
          description: Invalid or missing API key
        '404':
          description: Wallet not found or not provisioned
      security:
        - ApiKey: []
components:
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Required for order endpoints. Obtain your API key from the Vatic
        dashboard.

````