Skip to main content
< 戻る

概要

利用可能な操作

  • 取得 - コンセンサス・レーティングの取得

取得

指定したシンボルのコンセンサスレーティングを取得します。

使用例

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()) {
            // レスポンスを処理する
        }
    }
}

パラメータ

パラメータ必須説明
requestGetConsensusRatingsV1Request:heavy_check_mark:このリクエストで使用するリクエストオブジェクト。

レスポンス

GetConsensusRatingsV1Response

エラー

エラータイプステータスコードコンテンツタイプ
models/errors/APIException4XX, 5XX/