> ## 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`，附帶池的金鑰及索引器根據最新 tick 狀態計算出的 `pendingSettle` 金額。

資料從索引器的 Redis 快取提供，可能與鏈上狀態有數秒延遲。




## OpenAPI

````yaml /zh-Hant/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`，附帶池的金鑰及索引器根據最新 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` 陣列，內含索引器的軟性錯誤訊息（例如：因找不到池或 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: 單筆目前掛單中的 limit order。
      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

````