> ## Documentation Index
> Fetch the complete documentation index at: https://docs.benzinga.com/llms.txt
> Use this file to discover all available pages before exploring further.

# شركات تقييمات المحللين

<ResponseExample>
  ```json Response (200 OK) theme={null}
  {
    "analyst_ratings_firm": [
      {
        "id": "692d37e208782e0001f054f2",
        "name": "konik capital partners llc"
      },
      {
        "id": "691f0b6521a45000013bb706",
        "name": "BNP Paribas Exane"
      },
      {
        "id": "6916bad521a450000139dde8",
        "name": "Galaxy Digital"
      },
      {
        "id": "690d8c8ed8a7a50001a7ca17",
        "name": "Blue Diamond Securities of America LLC"
      },
      {
        "id": "690907ab6d699e0001d02d93",
        "name": "Aletheia Capital"
      }
    ]
  }
  ```

  ```json Response (401 Unauthorized) theme={null}
  {
    "ok": false,
    "errors": [
      {
        "code": "auth_failed",
        "id": "unauthorized",
        "value": "Invalid or missing authentication token"
      }
    ]
  }
  ```

  ```json Response (404 Not Found) theme={null}
  {
    "ok": false,
    "errors": [
      {
        "code": "no_data_found",
        "id": "not_found",
        "value": "No data found for the specified parameters"
      }
    ]
  }
  ```

  ```json Response (500 Internal Server Error) theme={null}
  {
    "ok": false,
    "errors": [
      {
        "code": "internal_server_error",
        "id": "server_error",
        "value": "An unexpected error occurred while processing your request"
      }
    ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml ar/openapi/calendar-api.spec.yml GET /api/v2.1/calendar/ratings/firms
openapi: 3.0.0
info:
  contact: {}
  description: >-
    تُعيد واجهة برمجة تطبيقات REST هذه بيانات مُنظَّمة لمكالمات المؤتمرات
    الهاتفية (conference calls)، وتوزيعات الأرباح (dividends)، والأرباح (بما في
    ذلك تواريخ الأرباح المستقبلية)، والبيانات الاقتصادية، وإعلانات شركات
    الأدوية، والتوجيّهات المستقبلية للشركات (guidance)، والاكتتابات العامة
    الأولية (IPOs)، والعروض الثانوية، والتقييمات (ratings)، وأنشطة الاندماجات
    والاستحواذات (M&A)، وتجزيئة الأسهم (splits).
  termsOfService: http://swagger.io/terms/
  title: Calendar API
  version: 2.1.0
servers:
  - url: https://api.benzinga.com
    description: PROD
security: []
paths:
  /api/v2.1/calendar/ratings/firms:
    get:
      tags:
        - ratings_firms
      summary: وكالات التصنيف
      description: يُرجِع الشركات المتاحة التي تقدّم تقييمات المحللين
      operationId: get-ratings-firms
      parameters:
        - description: >-
            إزاحة الصفحة. لأسباب تتعلق بالتحسين والأداء والاعتبارات التقنية،
            تُقيَّد قيم إزاحة الصفحة بين 0 و100000. يمكنك حصر نتائج الاستعلام
            باستخدام معلمات أخرى مثل التاريخ. القيمة الافتراضية هي 0
          in: query
          name: page
          schema:
            type: integer
            default: 0
        - description: عدد النتائج المُعادة. الحد الأقصى 1000
          in: query
          name: pageSize
          schema:
            type: integer
            default: 100
        - description: الحقول
          in: query
          name: fields
          schema:
            type: string
        - description: شركة
          in: query
          name: firm
          schema:
            type: string
        - description: >-
            الطابع الزمني بنظام Unix (بتوقيت UTC) لآخر مرة تم فيها تحديث
            السجلات. سيؤدي ذلك إلى فرض ترتيب فرز تكون قيمه أكبر من أو تساوي
            الطابع الزمني المحدد.
          in: query
          name: updated
          schema:
            type: integer
      responses:
        '200':
          description: شركات التصنيف
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/calendarapi.RatingsFirm'
            text/xml:
              schema:
                $ref: '#/components/schemas/calendarapi.RatingsFirm'
        '400':
          description: طلب غير صالح
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
            text/xml:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
        '500':
          description: خطأ داخلي في الخادم
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
            text/xml:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    calendarapi.RatingsFirm:
      properties:
        currency:
          example: USD
          type: string
        homepage:
          example: https://www.goldmansachs.com
          type: string
        id:
          example: 60a7f5e8e4b0f5a3c8e9f5ba
          type: string
        name:
          example: Goldman Sachs
          type: string
        updated:
          example: 1704819600
          type: integer
      type: object
    api.ErrorResponse:
      properties:
        text:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: query
      name: token
      type: apiKey

````