(ratingsAnalysts())
- get - Get Ratings Analysts
Returns the full list of analyst that are providing ratings
package hello.world;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetRatingsAnalystsRequest;
import com.benzinga.bzclient.models.operations.GetRatingsAnalystsResponse;
import java.lang.Exception;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetRatingsAnalystsRequest req = GetRatingsAnalystsRequest.builder()
.build();
GetRatingsAnalystsResponse res = sdk.ratingsAnalysts().get()
.request(req)
.call();
if (res.modelsRatingsAnalystJSON().isPresent()) {
// handle response
}
}
}
Parameter | Type | Required | Description |
---|---|---|---|
request |
GetRatingsAnalystsRequest | ✔️ | The request object to use for the request. |
Error Type | Status Code | Content Type |
---|---|---|
models/errors/APIException | 4XX, 5XX | */* |