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

# استرداد قائمة أوامر الحد المعلّقة في CLMM لمحفظة معينة

> يُعيد أوامر الحد في CLMM المملوكة لـ `wallet` والموجودة على السلسلة — يُدرج كلٌّ من الأوامر غير المنفَّذة كليًا والأوامر المنفَّذة جزئيًا في استجابة واحدة. يمثّل كل صف حالة `LimitOrderState` المفككة من السلسلة مضافًا إليها مفاتيح pool ومبلغ `pendingSettle` الذي احتسبه المُفهرِس من أحدث حالة للتيك.

تُقدَّم البيانات من ذاكرة التخزين المؤقت Redis للمُفهرِس وقد تتأخر عن السلسلة بضع ثوانٍ.




## OpenAPI

````yaml /ar/api-reference/openapi/temp-api-v1.yaml get /limit-order/order/list
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/order/list:
    get:
      tags:
        - Temporary
      summary: استرداد قائمة أوامر الحد المعلّقة في CLMM لمحفظة معينة
      description: >
        يُعيد أوامر الحد في CLMM المملوكة لـ `wallet` والموجودة على السلسلة —
        يُدرج كلٌّ من الأوامر غير المنفَّذة كليًا والأوامر المنفَّذة جزئيًا في
        استجابة واحدة. يمثّل كل صف حالة `LimitOrderState` المفككة من السلسلة
        مضافًا إليها مفاتيح pool ومبلغ `pendingSettle` الذي احتسبه المُفهرِس من
        أحدث حالة للتيك.


        تُقدَّم البيانات من ذاكرة التخزين المؤقت Redis للمُفهرِس وقد تتأخر عن
        السلسلة بضع ثوانٍ.
      operationId: listLimitOrders
      parameters:
        - name: wallet
          in: query
          required: true
          description: المفتاح العام للمحفظة (base58)
          schema:
            type: string
            example: <your-wallet-pubkey>
        - name: showErr
          in: query
          required: false
          description: >
            عند توفّره، تتضمّن الاستجابة أيضًا مصفوفة `e` تحتوي على رسائل إخفاق
            خفيفة من المُفهرِس (مثل: إدخال pool مفقود أو إدخال tick-array في
            الذاكرة المؤقتة تسبّب في تخطّي صف).
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LimitOrderListResponse'
        '400':
          description: طلب غير صحيح
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: خطأ في الخادم
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    LimitOrderListResponse:
      type: object
      description: الحمولة الخاصة بـ `/limit-order/order/list`.
      properties:
        id:
          type: string
          description: معرف الطلب (UUID)
        success:
          type: boolean
          example: true
        data:
          type: object
          properties:
            rows:
              type: array
              items:
                $ref: '#/components/schemas/LimitOrderListItem'
            e:
              type: array
              description: >
                اختياري. يظهر فقط عند تقديم الطلب مع `showErr`. كل إدخال

                هو رسالة فشل غير حرجة من المُفهرِس (مثلاً: pool أو إدخال
                tick-array

                مفقود في الذاكرة المؤقتة أدى إلى تخطي صف).
              items:
                type: string
          required:
            - rows
      required:
        - success
        - data
    ErrorResponse:
      type: object
      properties:
        id:
          type: string
        success:
          type: boolean
          example: false
        msg:
          type: string
          description: رسالة الخطأ
      required:
        - success
        - msg
    LimitOrderListItem:
      type: object
      description: أمر شراء/بيع محدد السعر (limit order) واحد قيد الانتظار حالياً.
      properties:
        pda:
          type: string
          description: المفتاح العام لحساب LimitOrderState
        poolId:
          type: string
        owner:
          type: string
        tick:
          type: integer
          description: الـ tick الكمّي الذي يرتكز عليه هذا الأمر.
        price:
          type: number
          description: السعر المقروء للبشر عند `tick`، مُعدَّل وفق decimals الـ mint.
        zeroForOne:
          type: boolean
          description: true = بيع token_0 وشراء token_1؛ false = الاتجاه المعاكس.
        orderPhase:
          type: string
          description: u64 بصيغة نصية — مرحلة مجموعة FIFO لهذا الأمر عند الـ tick الخاص به.
        totalAmount:
          type: string
          description: u64 بصيغة نصية — إجمالي المدخلات التي التزم بها الأمر.
        filledAmount:
          type: string
          description: u64 بصيغة نصية — المدخلات المستهلكة بواسطة عمليات swap حتى الآن.
        openTime:
          type: string
          description: u64 بصيغة نصية — الطابع الزمني Unix للحظة فتح الأمر.
        pendingSettle:
          type: string
          description: >-
            u64 بصيغة نصية — مقدار الإخراج المستحق للمالك حالياً وفي انتظار
            `SettleLimitOrder`.
        filledAmountUpdate:
          type: string
          description: u64 بصيغة نصية — نسخة مطابقة لـ `filledAmount`، تُعاد لراحة العميل.
        mintA:
          type: string
        mintB:
          type: string
        mintDecimalsA:
          type: integer
        mintDecimalsB:
          type: integer
        poolCurrentPrice:
          type: number
          description: السعر الحالي المقروء للبشر للـ pool (token_1 / token_0).
      required:
        - pda
        - poolId
        - owner
        - tick
        - price
        - zeroForOne
        - orderPhase
        - totalAmount
        - filledAmount
        - openTime
        - pendingSettle
        - filledAmountUpdate
        - mintA
        - mintB
        - mintDecimalsA
        - mintDecimalsB
        - poolCurrentPrice

````