Documentation Index
Fetch the complete documentation index at: https://benzinga-2-locadex-parallel-main.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
< رجوع
- get - جلب تقييمات الإجماع
جلب تقييمات الإجماع لرمز محدد
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetConsensusRatingsV1Request;
import org.benzinga.BZClient.models.operations.GetConsensusRatingsV1Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetConsensusRatingsV1Request req = GetConsensusRatingsV1Request.builder()
.build();
GetConsensusRatingsV1Response res = sdk.consensusRatings().get()
.request(req)
.call();
if (res.apiConsensusRating().isPresent()) {
// معالجة الرد
}
}
}
| المعامل | النوع | مطلوب | الوصف |
|---|
request | GetConsensusRatingsV1Request | :heavy_check_mark: | كائن الطلب المستخدم في الاستدعاء. |
GetConsensusRatingsV1Response
| نوع الخطأ | رمز الحالة | نوع المحتوى |
|---|
| models/errors/APIException | 4XX, 5XX | / |