Descripción general
Operaciones disponibles
- get - Obtener ratios operativos V2.1
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
operationRatios()
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetOperationRatiosV21Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetOperationRatiosV21Response res = sdk.operationRatios().get()
.symbols("<value>")
.asOf("<value>")
.period("<value>")
.reportType("<value>")
.call();
if (res.string().isPresent()) {
// manejar la respuesta
}
}
}
| Parámetro | Tipo | Obligatorio | Descripción |
|---|---|---|---|
symbols | String | :heavy_check_mark: | Lista de símbolos separados por comas |
asOf | Optional<String> | :heavy_minus_sign: | Fecha de referencia |
period | Optional<String> | :heavy_minus_sign: | Período |
reportType | Optional<String> | :heavy_minus_sign: | Tipo de informe |
| Tipo de error | Código de estado | Tipo de contenido |
|---|---|---|
| models/errors/APIException | 4XX, 5XX | / |
Was this page helpful?