Skip to main content
< ATRÁS

Descripción general

Operaciones disponibles

  • get - Obtener calificaciones de consenso

get

Obtener calificaciones de consenso para un símbolo determinado

Ejemplo de uso

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()) {
            // gestionar respuesta
        }
    }
}

Parámetros

ParámetroTipoObligatorioDescripción
requestGetConsensusRatingsV1Request:heavy_check_mark:El objeto de solicitud que se utilizará en la petición.

Respuesta

GetConsensusRatingsV1Response

Errores

Tipo de errorCódigo de estado HTTPTipo de contenido
models/errors/APIException4XX, 5XX/