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

# Получить журнал on-chain событий для одного или нескольких PDA лимитных ордеров

> Возвращает журнал событий (`open`, `increase`, `decrease`, `settle`, `close`) для одного или нескольких PDA лимитных ордеров. Удобно для отображения временной шкалы отдельного ордера. Пагинация по курсору через `nextPageId`.




## OpenAPI

````yaml /ru/api-reference/openapi/temp-api-v1.yaml get /limit-order/history/event/list-by-pda
openapi: 3.0.3
info:
  title: Temp API
  description: >
    Временное хранилище для краткосрочных эндпоинтов, не имеющих постоянного
    места в основном API Raydium.

    Эндпоинты этого сервиса могут изменяться, устаревать или перемещаться без
    предупреждения.


    **Предупреждение об устойчивости:** Этот сервис ориентирован на быструю
    итерацию и не гарантирует стабильности 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: >-
        Получить журнал on-chain событий для одного или нескольких PDA лимитных
        ордеров
      description: >
        Возвращает журнал событий (`open`, `increase`, `decrease`, `settle`,
        `close`) для одного или нескольких PDA лимитных ордеров. Удобно для
        отображения временной шкалы отдельного ордера. Пагинация по курсору
        через `nextPageId`.
      operationId: listLimitOrderEventsByPda
      parameters:
        - name: pda
          in: query
          required: true
          description: >
            Один или несколько публичных ключей PDA лимитных ордеров,
            разделённых запятой. Каждый должен быть корректным pubkey в формате
            base58.
          schema:
            type: string
        - name: nextPageId
          in: query
          required: false
          description: >-
            Непрозрачный курсор пагинации, возвращённый предыдущей страницей
            (TTL ~1h).
          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: Одна on-chain мутация, зафиксированная для 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 — операция выполнена keeper-ом `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

````