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

# استرداد سجل الأحداث على السلسلة لعنوان PDA أمر حد واحد أو أكثر

> يُعيد سجل الأحداث (`open`، `increase`، `decrease`، `settle`، `close`) لعنوان PDA أمر حد واحد أو أكثر. مفيد لعرض الجدول الزمني لكل أمر على حدة. يدعم التصفّح عبر المؤشر باستخدام `nextPageId`.




## OpenAPI

````yaml /ar/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: استرداد سجل الأحداث على السلسلة لعنوان PDA أمر حد واحد أو أكثر
      description: >
        يُعيد سجل الأحداث (`open`، `increase`، `decrease`، `settle`، `close`)
        لعنوان PDA أمر حد واحد أو أكثر. مفيد لعرض الجدول الزمني لكل أمر على حدة.
        يدعم التصفّح عبر المؤشر باستخدام `nextPageId`.
      operationId: listLimitOrderEventsByPda
      parameters:
        - name: pda
          in: query
          required: true
          description: >
            مفتاح عام واحد أو أكثر لـ PDA أوامر الحد، مفصولة بفواصل. يجب أن يكون
            كل منها مفتاحًا عامًا صالحًا بترميز base58.
          schema:
            type: string
        - name: nextPageId
          in: query
          required: false
          description: مؤشر تصفّح معتم مُعاد من الصفحة السابقة (مدة الصلاحية ~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: تعديل واحد مُلاحَظ على السلسلة بالنسبة لـ PDA خاص بـ limit order.
      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

````