> ## 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リミットオーダーを返します。未約定・一部約定のオーダーをまとめて1つのペイロードで返します。各行はデコード済みオンチェーン `LimitOrderState` にプールキーと、インデクサーが最新のティック状態から算出した `pendingSettle` 金額を加えたものです。

データはインデクサーのRedisキャッシュから提供されるため、チェーンより数秒遅延する場合があります。




## OpenAPI

````yaml /ja/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リミットオーダーを返します。未約定・一部約定のオーダーをまとめて1つのペイロードで返します。各行はデコード済みオンチェーン
        `LimitOrderState` にプールキーと、インデクサーが最新のティック状態から算出した `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` 配列も含まれます。
          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`
                を指定したリクエストの場合のみ存在します。インデクサーからのソフトエラーメッセージ（例：存在しないプールやティック配列のキャッシュエントリにより行がスキップされた場合など）の一覧です。
              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: この注文が存在するティック（量子化済み）。
        price:
          type: number
          description: '`tick` における人間が読める価格（ミントのデシマルでスケーリング済み）。'
        zeroForOne:
          type: boolean
          description: true = token_0 を売り token_1 を買う、false = その逆方向。
        orderPhase:
          type: string
          description: u64 文字列 — このティックにおける注文の FIFO コホートフェーズ。
        totalAmount:
          type: string
          description: u64 文字列 — 注文によってコミットされた合計入力量。
        filledAmount:
          type: string
          description: u64 文字列 — スワップによって消費された累積入力量。
        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: 人間が読める現在のプール価格（token_1 / token_0）。
      required:
        - pda
        - poolId
        - owner
        - tick
        - price
        - zeroForOne
        - orderPhase
        - totalAmount
        - filledAmount
        - openTime
        - pendingSettle
        - filledAmountUpdate
        - mintA
        - mintB
        - mintDecimalsA
        - mintDecimalsB
        - poolCurrentPrice

````