> ## 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 مقفول. يُرجع بيانات المركز بما فيها مدة الحجز والرسوم المتراكمة والتقييم الحالي.




## OpenAPI

````yaml /ar/api-reference/openapi/dynamic-ipfs-v1.yaml get /lock/clmm/position
openapi: 3.0.3
info:
  title: واجهة IPFS الديناميكية
  description: >
    إعادة توليد بيانات ووصور NFT الديناميكية لمراكز CLMM. تُستخدم من قبل
    التطبيقات اللامركزية لجلب العروض البصرية الفورية للمركز وبيانات التقييم، بما
    في ذلك تفاصيل المجمع والكميات والرسوم والمكافآت.


    تخزن هذه الخدمة البيانات الوصفية للمركز في IPFS وتقدم حالة المركز المحسوبة
    (القيمة بالدولار الأمريكي، نسبة TVL، الرسوم غير المطالب بها) حسب معرّف
    المركز. تدعم المراكز المفتوحة والمقفلة عبر أنواع مجاميع CLMM و CPMM.
  version: 1.0.0
  contact:
    name: Raydium
    url: https://raydium.io
servers:
  - url: https://dynamic-ipfs.raydium.io
    description: Mainnet
  - url: https://dynamic-ipfs-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: CLMM Position
    description: استرجاع البيانات الوصفية الديناميكية لمراكز صانع السيولة المركزة
  - name: Locked Positions
    description: استرجاع بيانات المركز المقفل (CLMM و CPMM)
paths:
  /lock/clmm/position:
    get:
      tags:
        - Locked Positions
      summary: الحصول على البيانات الوصفية لمركز CLMM المقفل
      description: >
        جلب البيانات الوصفية لمركز CLMM مقفول. يُرجع بيانات المركز بما فيها مدة
        الحجز والرسوم المتراكمة والتقييم الحالي.
      operationId: getLockedClmmPosition
      parameters:
        - name: id
          in: query
          required: true
          description: المفتاح العام للـ PDA الخاص بالمركز المقفل (base58)
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CLNFTInterface'
        '400':
          description: معرّف المركز غير صحيح أو عدم تطابق المالك
          content:
            text/plain:
              schema:
                type: string
        '404':
          description: لم يتم العثور على المركز
          content:
            text/plain:
              schema:
                type: string
        '500':
          description: خطأ في الخادم
          content:
            text/plain:
              schema:
                type: string
components:
  schemas:
    CLNFTInterface:
      type: object
      description: مركز CLMM كامل مع تفاصيل المجمع والتقييم
      properties:
        poolInfo:
          $ref: '#/components/schemas/PoolInfoConcentrated'
        positionInfo:
          $ref: '#/components/schemas/CLPositionInfo'
      required:
        - poolInfo
        - positionInfo
    PoolInfoConcentrated:
      type: object
      description: معلومات مجمع صانع السيولة المركزة
      properties:
        id:
          type: string
          description: معرّف المجمع
        programId:
          type: string
          description: معرّف البرنامج الذي يمتلك المجمع
        mintA:
          $ref: '#/components/schemas/MintInfo'
        mintB:
          $ref: '#/components/schemas/MintInfo'
        tvl:
          type: number
          description: إجمالي القيمة المقفلة بالدولار الأمريكي
        rewardDefaultInfos:
          type: array
          description: الرموز المكافآت لهذا المجمع
          items:
            $ref: '#/components/schemas/RewardInfo'
    CLPositionInfo:
      type: object
      description: حالة مركز CLMM
      properties:
        tvlPercentage:
          type: number
          description: نسبة TVL للمركز من إجمالي المجمع (0-100)
        usdValue:
          type: number
          description: قيمة المركز بالدولار الأمريكي
        amountA:
          type: number
          description: كمية الرمز A في المركز
        amountB:
          type: number
          description: كمية الرمز B في المركز
        unclaimedFee:
          $ref: '#/components/schemas/UnclaimedFeeInfo'
      required:
        - tvlPercentage
        - usdValue
        - amountA
        - amountB
        - unclaimedFee
    MintInfo:
      type: object
      properties:
        address:
          type: string
          description: عنوان mint الخاص بالرمز
        decimals:
          type: integer
          description: عدد فئات الرمز
        symbol:
          type: string
          description: رمز الرمز
    RewardInfo:
      type: object
      properties:
        mint:
          $ref: '#/components/schemas/MintInfo'
    UnclaimedFeeInfo:
      type: object
      description: الرسوم المتراكمة غير المطالب بها في مركز CLMM
      properties:
        amountA:
          type: number
          description: رسوم الرمز A غير المطالب بها
        amountB:
          type: number
          description: رسوم الرمز B غير المطالب بها
        usdFeeValue:
          type: number
          description: قيمة رسوم التداول بالدولار الأمريكي
        reward:
          type: array
          items:
            type: number
          description: مبالغ المكافآت غير المطالب بها لكل رمز مكافآت
        usdRewardValue:
          type: number
          description: قيمة المكافآت بالدولار الأمريكي
        usdValue:
          type: number
          description: إجمالي القيمة غير المطالب بها بالدولار الأمريكي

````