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

# 列出钱包当前挂单中的 CLMM 限价订单

> 返回 `wallet` 拥有的仍在链上的 CLMM 限价订单——未成交和部分成交的订单将一并返回。每条记录包含解码后的链上 `LimitOrderState`、对应的 pool keys，以及由索引器根据最新 tick 状态计算得出的 `pendingSettle` 金额。

数据来自索引器的 Redis 缓存，可能比链上状态延迟数秒。




## OpenAPI

````yaml /zh/api-reference/openapi/temp-api-v1.yaml get /limit-order/order/list
openapi: 3.0.3
info:
  title: Temp API
  description: |
    用于存放在 Raydium 主 API 中尚无固定归属的短期端点。
    此服务中的端点可能随时变更、弃用或迁移，恕不另行通知。

    **稳定性警告：** 本服务以快速迭代为优先，不提供 API 稳定性保证。
    仅建议用于非关键路径、内部工具或正在开发中的功能。
  version: 1.0.0
  contact:
    name: Raydium
    url: https://raydium.io
servers:
  - url: https://temp-api-v1.raydium.io
    description: Mainnet
  - url: https://temp-api-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Temporary
    description: 临时端点（不稳定）
paths:
  /limit-order/order/list:
    get:
      tags:
        - Temporary
      summary: 列出钱包当前挂单中的 CLMM 限价订单
      description: >
        返回 `wallet` 拥有的仍在链上的 CLMM 限价订单——未成交和部分成交的订单将一并返回。每条记录包含解码后的链上
        `LimitOrderState`、对应的 pool keys，以及由索引器根据最新 tick 状态计算得出的 `pendingSettle`
        金额。


        数据来自索引器的 Redis 缓存，可能比链上状态延迟数秒。
      operationId: listLimitOrders
      parameters:
        - name: wallet
          in: query
          required: true
          description: 钱包公钥（base58）
          schema:
            type: string
            example: <your-wallet-pubkey>
        - name: showErr
          in: query
          required: false
          description: >
            如果存在该参数，响应中还会包含一个 `e` 数组，记录来自索引器的软性失败消息（例如缺少 pool 或 tick-array
            缓存条目导致某条记录被跳过）。
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LimitOrderListResponse'
        '400':
          description: 请求无效
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: 服务器错误
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    LimitOrderListResponse:
      type: object
      description: '`/limit-order/order/list` 的请求体。'
      properties:
        id:
          type: string
          description: 请求 ID（UUID）
        success:
          type: boolean
          example: true
        data:
          type: object
          properties:
            rows:
              type: array
              items:
                $ref: '#/components/schemas/LimitOrderListItem'
            e:
              type: array
              description: |
                可选。仅在请求时携带 `showErr` 参数时出现。每条记录
                是来自索引器的软失败消息（例如，某个缺失的 pool 或 tick-array
                缓存条目导致该行被跳过）。
              items:
                type: string
          required:
            - rows
      required:
        - success
        - data
    ErrorResponse:
      type: object
      properties:
        id:
          type: string
        success:
          type: boolean
          example: false
        msg:
          type: string
          description: 错误信息
      required:
        - success
        - msg
    LimitOrderListItem:
      type: object
      description: 单条当前挂单中的限价订单。
      properties:
        pda:
          type: string
          description: LimitOrderState 账户公钥
        poolId:
          type: string
        owner:
          type: string
        tick:
          type: integer
          description: 该订单所在的量化 tick。
        price:
          type: number
          description: 基于 `tick` 的可读价格，已按 mint 精度换算。
        zeroForOne:
          type: boolean
          description: true = 卖出 token_0，买入 token_1；false = 反方向。
        orderPhase:
          type: string
          description: u64 字符串 —— 该订单在其 tick 处的 FIFO 批次阶段。
        totalAmount:
          type: string
          description: u64 字符串 —— 订单委托的输入总量。
        filledAmount:
          type: string
          description: u64 字符串 —— 至今已被 swap 消耗的累计输入量。
        openTime:
          type: string
          description: u64 字符串 —— 订单创建时的 Unix 时间戳。
        pendingSettle:
          type: string
          description: u64 字符串 —— 当前已归属于所有者、等待 `SettleLimitOrder` 提取的输出金额。
        filledAmountUpdate:
          type: string
          description: u64 字符串 —— 与 `filledAmount` 相同的镜像值，供客户端使用。
        mintA:
          type: string
        mintB:
          type: string
        mintDecimalsA:
          type: integer
        mintDecimalsB:
          type: integer
        poolCurrentPrice:
          type: number
          description: 可读的当前 pool 价格（token_1 / token_0）。
      required:
        - pda
        - poolId
        - owner
        - tick
        - price
        - zeroForOne
        - orderPhase
        - totalAmount
        - filledAmount
        - openTime
        - pendingSettle
        - filledAmountUpdate
        - mintA
        - mintB
        - mintDecimalsA
        - mintDecimalsB
        - poolCurrentPrice

````