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

# List orders with filters



## OpenAPI

````yaml /openapi.json get /orders
openapi: 3.0.3
info:
  title: Blink Markets API
  description: Trading API for Blink Prediction Markets
  contact:
    name: Blink
    url: https://blink15.com
  license:
    name: Proprietary
    url: https://blink15.com/terms
  version: 1.0.0
servers:
  - url: https://api.blink15.com
    description: Production (Base Sepolia Testnet)
  - url: http://localhost:3001
    description: Local Development
security: []
tags:
  - name: health
    description: Health check endpoints
  - name: markets
    description: Market discovery and information
  - name: market-data
    description: Orderbook, price, and spread data
  - name: trading
    description: Order placement, cancellation, and trade history
  - name: account
    description: Wallet status, balances, and allowances
  - name: auth
    description: API key creation and derivation (L1 EIP-712)
  - name: orders
    description: Order management
  - name: trades
    description: Trade history and fills
  - name: users
    description: User account management
  - name: faucet
    description: Testnet faucet and gasless relay endpoints
  - name: admin
    description: Administrative endpoints (requires API key)
  - name: compat
    description: Polymarket-compatible endpoints
paths:
  /orders:
    get:
      tags:
        - orders
      summary: List orders with filters
      operationId: list_orders
      parameters:
        - name: market_id
          in: query
          description: Filter by market
          required: false
          schema:
            type: string
            format: uuid
            nullable: true
        - name: maker
          in: query
          description: Filter by maker address
          required: false
          schema:
            type: string
            nullable: true
        - name: status
          in: query
          description: Filter by order status
          required: false
          schema:
            type: string
            nullable: true
        - name: limit
          in: query
          description: Maximum number of orders to return
          required: false
          schema:
            type: integer
            format: int64
            nullable: true
      responses:
        '200':
          description: List of orders

````