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

# Get User Orders

> Get all orders placed by the authenticated user for a specific market

### Status filters

If `statuses` is omitted, the API returns live orders.

Supported status filters: `LIVE`, `MATCHED`, `CANCELED`, `UNMATCHED`.

A taker rejected by self-trade prevention terminates as `CANCELED` (the placement response carries `execution.reason: "STP_TAKER_REJECTED"`); filter for it with `CANCELED`.


## OpenAPI

````yaml GET /markets/{slug}/user-orders
openapi: 3.0.0
info:
  title: Limitless Exchange API
  description: >-
    Production-ready REST API for prediction market trading, portfolio
    management, and market data on Limitless Exchange (Base L2).
  version: '1.0'
  contact:
    name: API Support
    url: https://limitless.exchange
    email: help@limitless.network
servers:
  - url: https://api.limitless.exchange
    description: Production API
security: []
tags:
  - name: Authentication
    description: User authentication and session management
  - name: Markets
    description: Browse, search, and analyze prediction markets
  - name: Market Navigation
    description: Navigation tree, market pages, and property filters
  - name: Trading
    description: Create, manage, and cancel orders
  - name: Portfolio
    description: Position tracking, trade history, and performance
  - name: API Tokens
    description: Scoped API token management for partner integrations
  - name: Partner Accounts
    description: Sub-account creation and allowance recovery for partner integrations
  - name: System
    description: Public API state and availability information
paths:
  /markets/{slug}/user-orders:
    get:
      tags:
        - Trading
      summary: User Orders
      description: Get all orders placed by the authenticated user for a specific market
      operationId: MarketOrderbookController_getUserOrders
      parameters:
        - name: statuses
          required: false
          in: query
          description: Order status(es) to filter by. Defaults to [LIVE] if not provided
          schema:
            type: array
            items:
              type: string
              enum:
                - LIVE
                - MATCHED
                - CANCELED
                - UNMATCHED
        - name: limit
          required: false
          in: query
          description: Maximum number of orders to return
          schema:
            minimum: 1
            example: 100
            type: number
        - name: slug
          required: true
          in: path
          description: Market slug identifier
          schema:
            example: presidential-election-2024
      responses:
        '200':
          description: List of user orders for the market
          content:
            application/json:
              schema:
                type: object
                properties:
                  orders:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: '12345'
                        side:
                          type: string
                          example: BUY
                        price:
                          type: string
                          example: '0.75'
                        quantity:
                          type: string
                          example: '100'
                        status:
                          type: string
                          example: LIVE

````