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

# List Orders

> Get orders for authenticated user

List orders for the authenticated account.


## OpenAPI

````yaml GET /api/v1/orders
openapi: 3.1.0
info:
  title: Lidian Protocol API
  description: REST and WebSocket API for the Lidian cross-chain stablecoin swap protocol
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.lidian.finance
    description: API
security:
  - apiKeyAuth: []
paths:
  /api/v1/orders:
    get:
      description: Get orders for authenticated user
      parameters:
        - name: status
          in: query
          description: Filter by order status
          schema:
            type: string
        - name: page
          in: query
          description: Page number
          schema:
            type: integer
            default: 1
        - name: pageSize
          in: query
          description: Number of results per page
          schema:
            type: integer
            default: 50
        - name: accountType
          in: query
          description: Filter by account type (moneyMover or liquidityProvider)
          schema:
            type: string
        - name: includeQuotes
          in: query
          description: Include quote data in response
          schema:
            type: boolean
            default: false
      responses:
        '200':
          description: Orders retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrdersResponse'
components:
  schemas:
    OrdersResponse:
      type: object
      properties:
        message:
          type: string
        data:
          type: object
          properties:
            orders:
              type: array
              items:
                type: object
                properties:
                  orderId:
                    type: string
                  quoteId:
                    type: string
                  signature:
                    type: string
                  status:
                    type: string
                    enum:
                      - created
                      - accepted
                      - completed
                      - failed
                      - received
                      - fulfilled
                      - cancelled
                  moneyMoverAccountId:
                    type: string
                  liquidityProviderAccountId:
                    type: string
                  details:
                    type: object
                  createdAt:
                    type: string
                  updatedAt:
                    type: string
                  completedAt:
                    type: string
                  failureReason:
                    type: string
                  createdBy:
                    type: string
                  updatedBy:
                    type: string
                  metadata:
                    type: object
                  quote:
                    type: object
            total:
              type: number
            page:
              type: number
            pageSize:
              type: number
            totalPages:
              type: number
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````