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

# Recent Quotes

> Get recent quotes

Retrieve recent public quotes. No authentication required.


## OpenAPI

````yaml GET /api/public/quotes/recent
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/quotes/recent:
    get:
      description: Get recent quotes
      parameters:
        - 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: Recent quotes retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecentQuotesResponse'
      security: []
components:
  schemas:
    RecentQuotesResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - success
        data:
          type: object
          properties:
            quotes:
              type: array
              items:
                type: object
        total:
          type: number
        page:
          type: number
        pageSize:
          type: number
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````