Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 2.36 KB

File metadata and controls

60 lines (40 loc) · 2.36 KB

RatingsAnalysts

(ratingsAnalysts())

Overview

Available Operations

  • get - Get Ratings Analysts

get

Returns the full list of analyst that are providing ratings

Example Usage

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
        }
    }
}

Parameters

Parameter Type Required Description
request GetRatingsAnalystsRequest ✔️ The request object to use for the request.

Response

GetRatingsAnalystsResponse

Errors

Error Type Status Code Content Type
models/errors/APIException 4XX, 5XX */*