> ## 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リミットオーダーを返します。各行はオーダーがアクティブセットから外れた時点の情報を要約したものです。`nextPageId` によるカーソルページネーションに対応しています。




## OpenAPI

````yaml /ja/api-reference/openapi/temp-api-v1.yaml get /limit-order/history/order/list-by-user
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/history/order/list-by-user:
    get:
      tags:
        - Temporary
      summary: ウォレットの過去のCLMMリミットオーダー履歴を取得
      description: >
        `wallet`
        が所有するクローズ済みCLMMリミットオーダーを返します。各行はオーダーがアクティブセットから外れた時点の情報を要約したものです。`nextPageId`
        によるカーソルページネーションに対応しています。
      operationId: listLimitOrderHistoryByUser
      parameters:
        - name: wallet
          in: query
          required: true
          description: ウォレットの公開鍵（base58）
          schema:
            type: string
            example: <your-wallet-pubkey>
        - name: hideCancel
          in: query
          required: false
          description: |
            `true` に設定すると、一度も約定せずにクローズされたオーダー（キャンセル済み）を除外します。デフォルトは `false` です。
          schema:
            type: string
        - name: poolId
          in: query
          required: false
          description: 絞り込み対象のCLMM プール（任意）。`mint1` / `mint2` とは同時に使用できません。
          schema:
            type: string
        - name: mint1
          in: query
          required: false
          description: ミントフィルター（トークンAまたはB）（任意）。`poolId` とは同時に使用できません。
          schema:
            type: string
        - name: mint2
          in: query
          required: false
          description: 2つ目のミントフィルター（任意）。`poolId` とは同時に使用できません。
          schema:
            type: string
        - name: nextPageId
          in: query
          required: false
          description: 前のページが返した不透明なページネーションカーソル（TTL 約1時間）。
          schema:
            type: string
        - name: size
          in: query
          required: false
          description: ページサイズ（1〜100、デフォルト20）。
          schema:
            type: integer
            default: 20
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LimitOrderHistoryByUserResponse'
        '400':
          description: リクエストが無効です
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: サーバーエラー
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    LimitOrderHistoryByUserResponse:
      type: object
      description: '`/limit-order/history/order/list-by-user` のペイロード。'
      properties:
        id:
          type: string
        success:
          type: boolean
          example: true
        data:
          type: object
          properties:
            rows:
              type: array
              items:
                $ref: '#/components/schemas/LimitOrderHistoryItem'
            nextPageId:
              type: string
              nullable: true
              description: 次ページ用の不透明なカーソル。最終ページの場合は含まれません。
          required:
            - rows
      required:
        - success
        - data
    ErrorResponse:
      type: object
      properties:
        id:
          type: string
        success:
          type: boolean
          example: false
        msg:
          type: string
          description: エラーメッセージ
      required:
        - success
        - msg
    LimitOrderHistoryItem:
      type: object
      description: クローズ済みの単一の指値注文の概要。
      properties:
        pda:
          type: string
        owner:
          type: string
        poolId:
          type: string
        mintA:
          type: string
        mintB:
          type: string
        zeroForOne:
          type: boolean
        tick:
          type: integer
        price:
          type: number
        openBlockTime:
          type: integer
          description: 注文が作成された unix タイムスタンプ。
        fillStatus:
          type: string
          enum:
            - NONE
            - PARTIAL
            - FULL
          description: |
            クローズ前に最終的に約定した割合：
            `NONE`（約定ゼロでキャンセル）、`PARTIAL`、または `FULL`。
        orderInputAmountUi:
          type: number
          description: 元の入力量（デシマル適用済みの人間が読める単位）。
        orderOutputAmountUi:
          type: number
          description: ティックにおいて注文が支払うはずだった出力量（デシマル適用済みの人間が読める単位）。
        filledInputAmountUi:
          type: number
        filledOutputAmountUi:
          type: number
      required:
        - pda
        - owner
        - poolId
        - mintA
        - mintB
        - zeroForOne
        - tick
        - price
        - openBlockTime
        - fillStatus
        - orderInputAmountUi
        - orderOutputAmountUi
        - filledInputAmountUi
        - filledOutputAmountUi

````