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

# Lista el registro de eventos en cadena para uno o más PDAs de órdenes límite

> Devuelve el registro de eventos (`open`, `increase`, `decrease`, `settle`, `close`) para uno o más PDAs de órdenes límite. Útil para renderizar una línea de tiempo por orden. Paginación por cursor mediante `nextPageId`.




## OpenAPI

````yaml /es/api-reference/openapi/temp-api-v1.yaml get /limit-order/history/event/list-by-pda
openapi: 3.0.3
info:
  title: Temp API
  description: >
    Espacio temporal para endpoints de corta duración que aún no tienen un lugar
    permanente en la API principal de Raydium.

    Los endpoints de este servicio pueden cambiar, quedar obsoletos o moverse
    sin previo aviso.


    **Advertencia de estabilidad:** Este servicio prioriza la iteración rápida y
    ofrece garantías mínimas de estabilidad de API.

    Úsalo solo para rutas no críticas, herramientas internas o funcionalidades
    en desarrollo activo.
  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: Endpoints temporales (inestables)
paths:
  /limit-order/history/event/list-by-pda:
    get:
      tags:
        - Temporary
      summary: >-
        Lista el registro de eventos en cadena para uno o más PDAs de órdenes
        límite
      description: >
        Devuelve el registro de eventos (`open`, `increase`, `decrease`,
        `settle`, `close`) para uno o más PDAs de órdenes límite. Útil para
        renderizar una línea de tiempo por orden. Paginación por cursor mediante
        `nextPageId`.
      operationId: listLimitOrderEventsByPda
      parameters:
        - name: pda
          in: query
          required: true
          description: >
            Una o más claves públicas PDA de órdenes límite, separadas por
            comas. Cada una debe ser una pubkey base58 válida.
          schema:
            type: string
        - name: nextPageId
          in: query
          required: false
          description: >-
            Cursor de paginación opaco devuelto por la página anterior (TTL
            ~1h).
          schema:
            type: string
        - name: size
          in: query
          required: false
          description: Tamaño de página (1–100, por defecto 20).
          schema:
            type: integer
            default: 20
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LimitOrderEventByPdaResponse'
        '400':
          description: Solicitud inválida
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Error del servidor
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    LimitOrderEventByPdaResponse:
      type: object
      description: Payload para `/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: >-
                Cursor opaco para la siguiente página; ausente cuando esta es la
                última página.
          required:
            - rows
      required:
        - success
        - data
    ErrorResponse:
      type: object
      properties:
        id:
          type: string
        success:
          type: boolean
          example: false
        msg:
          type: string
          description: Mensaje de error
      required:
        - success
        - msg
    LimitOrderEventItem:
      type: object
      description: Una única mutación on-chain observada sobre un PDA de orden limitada.
      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 si el evento fue ejecutado por el keeper `limit_order_admin`;
            false si fue firmado por el propietario.
        type:
          type: string
          enum:
            - open
            - increase
            - decrease
            - settle
            - close
        inputAmountChangeUi:
          type: number
          description: >-
            Cambio neto en el balance de input de la orden, en unidades legibles
            (con signo).
        inputAmountValuePreUi:
          type: number
        inputAmountValuePostUi:
          type: number
        outputAmountChangeUi:
          type: number
          description: >-
            Cambio neto en el output acumulado de la orden, en unidades legibles
            (con signo).
        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

````