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

# List User Orders

> Get open orders for the authenticated user. If eventId or marketId is provided, get open orders for the specific event or market.



## OpenAPI

````yaml /swagger.json get /user/orders
openapi: 3.0.1
info:
  contact: {}
  title: VoxFi API
  version: 0.0.1
servers:
  - url: https://data-api-dev.voxfi.com.br/v1
security: []
paths:
  /user/orders:
    get:
      tags:
        - user
      summary: List User Orders
      description: >-
        Get open orders for the authenticated user. If eventId or marketId is
        provided, get open orders for the specific event or market.
      parameters:
        - name: eventId
          in: query
          description: Event ID
          schema:
            type: string
        - name: marketId
          in: query
          description: Market ID
          schema:
            type: string
        - name: x-api-key
          in: header
          description: API Key
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/models.OpenOrder'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
        '429':
          description: Too many requests
          content:
            application/json:
              schema:
                type: object
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
components:
  schemas:
    models.OpenOrder:
      type: object
      properties:
        event_description:
          type: string
        event_id:
          type: string
        event_slug:
          type: string
        filled:
          type: integer
        market_description:
          type: string
        market_id:
          type: string
        order_id:
          type: string
        original_qty:
          type: integer
        outcome:
          type: string
          description: '"YES" or "NO"'
        price_ticks:
          type: integer
        remaining:
          type: integer
        side:
          type: string
          description: '"BUY" or "SELL"'

````