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

# نسب التقييم

> valuationRatios()

[\< رجوع](/ar/sdks/languages/java#valuationratios)

<div id="overview">
  ## نظرة عامة
</div>

<div id="available-operations">
  ### العمليات المتاحة
</div>

* [get](#get) - جلب نسب التقييم V2.1

<div id="get">
  ## جلب
</div>

جلب نسب التقييم لقائمة من الرموز أو أرقام التعريف الدولي للأوراق المالية ISIN أو معرّفات CIK

<div id="example-usage">
  ### مثال على الاستخدام
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetValuationRatiosV21Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetValuationRatiosV21Response res = sdk.valuationRatios().get()
                .symbols("<value>")
                .asOf("<value>")
                .period("<value>")
                .reportType("<value>")
                .call();

        if (res.string().isPresent()) {
            // معالجة الاستجابة
        }
    }
}
```

<div id="parameters">
  ### المعاملات
</div>

| المعامل      | النوع               | مطلوب                | الوصف                             |
| ------------ | ------------------- | -------------------- | --------------------------------- |
| `symbols`    | *Optional\<String>* | :heavy\_minus\_sign: | قائمة رموز مفصولة بفواصل          |
| `asOf`       | *Optional\<String>* | :heavy\_minus\_sign: | تاريخ سريان البيانات (as of date) |
| `period`     | *Optional\<String>* | :heavy\_minus\_sign: | الفترة                            |
| `reportType` | *Optional\<String>* | :heavy\_minus\_sign: | نوع التقرير                       |

<div id="response">
  ### الاستجابة
</div>

**[GetValuationRatiosV21Response](../../models/operations/GetValuationRatiosV21Response.md)**

<div id="errors">
  ### الأخطاء
</div>

| نوع الخطأ                  | رمز الحالة | نوع المحتوى |
| -------------------------- | ---------- | ----------- |
| models/errors/APIException | 4XX, 5XX   | */*         |
