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

# Bir veya daha fazla limit emir PDA'sının zincir üstü olay günlüğünü listele

> Bir veya daha fazla limit emir PDA'sına ait olay günlüğünü (`open`, `increase`, `decrease`, `settle`, `close`) döndürür.
Emir başına zaman çizelgesi oluşturmak için kullanışlıdır. `nextPageId` aracılığıyla imleç tabanlı sayfalama uygulanır.




## OpenAPI

````yaml /tr/api-reference/openapi/temp-api-v1.yaml get /limit-order/history/event/list-by-pda
openapi: 3.0.3
info:
  title: Geçici API
  description: >
    Raydium ana API'sinde kalıcı bir yeri bulunmayan, kısa ömürlü endpoint'ler
    için tutma alanı.

    Bu servisteki endpoint'ler önceden bildirilmeksizin değişebilir, kullanımdan
    kaldırılabilir veya taşınabilir.


    **Kararlılık uyarısı:** Bu servis, hızlı iterasyona ve minimum API
    kararlılık garantisine öncelik verir.

    Yalnızca kritik olmayan yollar, dahili araçlar veya aktif geliştirme
    aşamasındaki özellikler için kullanın.
  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: Geçici endpoint'ler (kararsız)
paths:
  /limit-order/history/event/list-by-pda:
    get:
      tags:
        - Temporary
      summary: >-
        Bir veya daha fazla limit emir PDA'sının zincir üstü olay günlüğünü
        listele
      description: >
        Bir veya daha fazla limit emir PDA'sına ait olay günlüğünü (`open`,
        `increase`, `decrease`, `settle`, `close`) döndürür.

        Emir başına zaman çizelgesi oluşturmak için kullanışlıdır. `nextPageId`
        aracılığıyla imleç tabanlı sayfalama uygulanır.
      operationId: listLimitOrderEventsByPda
      parameters:
        - name: pda
          in: query
          required: true
          description: >
            Virgülle ayrılmış bir veya daha fazla limit emir PDA genel anahtarı.
            Her biri geçerli

            bir base58 pubkey olmalıdır.
          schema:
            type: string
        - name: nextPageId
          in: query
          required: false
          description: Önceki sayfa tarafından döndürülen opak sayfalama imleci (TTL ~1s).
          schema:
            type: string
        - name: size
          in: query
          required: false
          description: Sayfa boyutu (1–100, varsayılan 20).
          schema:
            type: integer
            default: 20
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LimitOrderEventByPdaResponse'
        '400':
          description: Geçersiz istek
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Sunucu hatası
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    LimitOrderEventByPdaResponse:
      type: object
      description: '`/limit-order/history/event/list-by-pda` için yük.'
      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: Sonraki sayfa için opak imleç; son sayfadaysa mevcut değildir.
          required:
            - rows
      required:
        - success
        - data
    ErrorResponse:
      type: object
      properties:
        id:
          type: string
        success:
          type: boolean
          example: false
        msg:
          type: string
          description: Hata mesajı
      required:
        - success
        - msg
    LimitOrderEventItem:
      type: object
      description: >-
        Bir limit emir PDA'sına karşı gözlemlenen tek bir zincir üstü
        değişiklik.
      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: >-
            `limit_order_admin` keeper tarafından gerçekleştirildiğinde true;
            sahibi tarafından imzalandığında false.
        type:
          type: string
          enum:
            - open
            - increase
            - decrease
            - settle
            - close
        inputAmountChangeUi:
          type: number
          description: >-
            Emrin girdi bakiyesindeki net değişim, insan birimi cinsinden
            (işaretli).
        inputAmountValuePreUi:
          type: number
        inputAmountValuePostUi:
          type: number
        outputAmountChangeUi:
          type: number
          description: >-
            Emrin birikimli çıktısındaki net değişim, insan birimi cinsinden
            (işaretli).
        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

````