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

# 1つ以上のリミットオーダーPDAのオンチェーンイベントログを取得

> 1つ以上のリミットオーダーPDAのイベントログ（`open`・`increase`・`decrease`・`settle`・`close`）を返します。オーダーごとのタイムラインを表示する際に有用です。`nextPageId` によるカーソルページネーションに対応しています。




## OpenAPI

````yaml /ja/api-reference/openapi/temp-api-v1.yaml get /limit-order/history/event/list-by-pda
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/event/list-by-pda:
    get:
      tags:
        - Temporary
      summary: 1つ以上のリミットオーダーPDAのオンチェーンイベントログを取得
      description: >
        1つ以上のリミットオーダーPDAのイベントログ（`open`・`increase`・`decrease`・`settle`・`close`）を返します。オーダーごとのタイムラインを表示する際に有用です。`nextPageId`
        によるカーソルページネーションに対応しています。
      operationId: listLimitOrderEventsByPda
      parameters:
        - name: pda
          in: query
          required: true
          description: |
            カンマ区切りの1つ以上のリミットオーダーPDA公開鍵。各値は有効なbase58形式の公開鍵である必要があります。
          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/LimitOrderEventByPdaResponse'
        '400':
          description: リクエストが無効です
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: サーバーエラー
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    LimitOrderEventByPdaResponse:
      type: object
      description: '`/limit-order/history/event/list-by-pda` のペイロード。'
      properties:
        id:
          type: string
        success:
          type: boolean
          example: true
        data:
          type: object
          properties:
            rows:
              type: array
              items:
                $ref: '#/components/schemas/LimitOrderEventItem'
            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
    LimitOrderEventItem:
      type: object
      description: 指値注文 PDA に対してオンチェーンで観測された単一のミューテーションイベント。
      properties:
        pda:
          type: string
        txid:
          type: string
        slot:
          type: integer
        blockTime:
          type: integer
        poolId:
          type: string
        mintA:
          type: string
        mintB:
          type: string
        zeroForOne:
          type: boolean
        tick:
          type: integer
        price:
          type: number
        autoRunner:
          type: boolean
          description: >-
            true = `limit_order_admin` キーパーによって実行されたイベント、false =
            オーナーによって署名されたイベント。
        type:
          type: string
          enum:
            - open
            - increase
            - decrease
            - settle
            - close
        inputAmountChangeUi:
          type: number
          description: 注文の入力残高への正味変化量（人間が読める単位、符号付き）。
        inputAmountValuePreUi:
          type: number
        inputAmountValuePostUi:
          type: number
        outputAmountChangeUi:
          type: number
          description: 注文の累積出力への正味変化量（人間が読める単位、符号付き）。
        outputAmountValuePreUi:
          type: number
        outputAmountValuePostUi:
          type: number
      required:
        - pda
        - txid
        - slot
        - blockTime
        - poolId
        - mintA
        - mintB
        - zeroForOne
        - tick
        - price
        - autoRunner
        - type
        - inputAmountChangeUi
        - inputAmountValuePreUi
        - inputAmountValuePostUi
        - outputAmountChangeUi
        - outputAmountValuePreUi
        - outputAmountValuePostUi

````