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

# استرداد الرسوم المتراكمة للمنشئ لمحفظة معينة

> استرداد جميع pools في CPMM التي تكون هذه المحفظة منشئها، مع الرسوم المتراكمة غير المطالب بها لكل pool. يُعيد مصفوفة فارغة إذا لم تكن للمحفظة رسوم منشئ مخزّنة مؤقتًا.

**ملاحظة:** تُخزّن هذه النقطة النهائية بيانات المستخدم بشكل دوري. قد لا تظهر أنشطة رسوم المنشئ الحديثة جدًا على الفور.




## OpenAPI

````yaml /ar/api-reference/openapi/temp-api-v1.yaml get /cp-creator-fee
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:
  /cp-creator-fee:
    get:
      tags:
        - Temporary
      summary: استرداد الرسوم المتراكمة للمنشئ لمحفظة معينة
      description: >
        استرداد جميع pools في CPMM التي تكون هذه المحفظة منشئها، مع الرسوم
        المتراكمة غير المطالب بها لكل pool. يُعيد مصفوفة فارغة إذا لم تكن
        للمحفظة رسوم منشئ مخزّنة مؤقتًا.


        **ملاحظة:** تُخزّن هذه النقطة النهائية بيانات المستخدم بشكل دوري. قد لا
        تظهر أنشطة رسوم المنشئ الحديثة جدًا على الفور.
      operationId: getCpCreatorFee
      parameters:
        - name: wallet
          in: query
          required: true
          description: المفتاح العام للمحفظة (base58)
          schema:
            type: string
            example: ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnop
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreatorFeeResponse'
        '400':
          description: عنوان محفظة غير صحيح
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: خطأ في الخادم
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    CreatorFeeResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: array
          description: مصفوفة pools مع الرسوم المتراكمة للمنشئ
          items:
            $ref: '#/components/schemas/CreatorFeeItem'
      required:
        - success
        - data
    ErrorResponse:
      type: object
      properties:
        id:
          type: string
        success:
          type: boolean
          example: false
        msg:
          type: string
          description: رسالة الخطأ
      required:
        - success
        - msg
    CreatorFeeItem:
      type: object
      description: pool واحد في CPMM مع الرسوم المتراكمة للمنشئ
      properties:
        poolInfo:
          type: object
          description: >-
            بيانات وصفية للـ pool (يتفاوت الهيكل؛ راجع pools API للاطلاع على
            المخطط)
        poolKey:
          type: object
          description: مفتاح تهيئة الـ pool
        fee:
          $ref: '#/components/schemas/FeeAmount'
      required:
        - poolInfo
        - poolKey
        - fee
    FeeAmount:
      type: object
      description: مبالغ الرسوم المتراكمة بوحدات الرمز الخام
      properties:
        amountA:
          type: string
          description: مبلغ رسوم المنشئ للرمز A (بأصغر وحدة)
        amountB:
          type: string
          description: مبلغ رسوم المنشئ للرمز B (بأصغر وحدة)
      required:
        - amountA
        - amountB

````