> ## 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.

# Public Orders

> Get public orders (recent protocol activity)

List recent public orders. No authentication required.


## OpenAPI

````yaml GET /api/public/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/public/orders:
    get:
      description: Get public orders (recent protocol activity)
      parameters:
        - name: address
          in: query
          description: Filter by account address
          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: 25
      responses:
        '200':
          description: Public orders retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicOrdersResponse'
      security: []
components:
  schemas:
    PublicOrdersResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - success
        data:
          type: object
          properties:
            orders:
              type: array
              items:
                $ref: '#/components/schemas/PublicOrder'
        total:
          type: number
        page:
          type: number
        pageSize:
          type: number
    PublicOrder:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
        createdAt:
          type: string
        updatedAt:
          type: string
        offerer:
          type: string
        recipient:
          type: string
        inputAmount:
          type: string
        outputAmount:
          type: string
        inputToken:
          type: string
        outputToken:
          type: string
        inputChain:
          type: string
        outputChain:
          type: string
        srcChainTxHash:
          type: string
        dstChainTxHash:
          type: string
        settlementTxHash:
          type: string
        failureReason:
          type: string
        source:
          type: string
          enum:
            - order
            - quote
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````