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

# المنتجات

> offerings()

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

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

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

* [جلب](#get) - الحصول على العروض

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

يُرجع بيانات الطروحات الثانوية

<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.GetOfferingsRequest;
import org.benzinga.BZClient.models.operations.GetOfferingsResponse;

public class Application {

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

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

        GetOfferingsRequest req = GetOfferingsRequest.builder()
                .build();

        GetOfferingsResponse res = sdk.offerings().get()
                .request(req)
                .call();

        if (res.modelsOfferingJSON().isPresent()) {
            // معالجة الرد
        }
    }
}
```

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

| Parameter | Type                                                                  | Required             | Description                         |
| --------- | --------------------------------------------------------------------- | -------------------- | ----------------------------------- |
| `request` | [GetOfferingsRequest](../../models/operations/GetOfferingsRequest.md) | :heavy\_check\_mark: | كائن الطلب المستخدم لهذا الاستدعاء. |

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

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

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

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