Documentation Index
Fetch the complete documentation index at: https://benzinga-2-locadex-parallel-main.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
< VOLVER
Obtener fundamentos V2.1
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetFundamentalsV21Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetFundamentalsV21Response res = sdk.fundamentals().getV21()
.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 separada por comas de símbolos |
asOf | Optional<String> | :heavy_minus_sign: | Fecha de corte |
period | Optional<String> | :heavy_minus_sign: | Período |
reportType | Optional<String> | :heavy_minus_sign: | Tipo de informe |
GetFundamentalsV21Response
| Tipo de error | Código de estado | Tipo de contenido |
|---|
| models/errors/APIException | 4XX, 5XX | / |
Obtener alfa y beta
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetAlphaBetaV21Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetAlphaBetaV21Response res = sdk.fundamentals().getAlphaBeta()
.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 |
GetAlphaBetaV21Response
| Tipo de error | Código de estado | Tipo de contenido |
|---|
| models/errors/APIException | 4XX, 5XX | / |
Obtener datos de la compañía
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetCompanyV21Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetCompanyV21Response res = sdk.fundamentals().getCompanyV21()
.symbols("<value>")
.asOf("<value>")
.period("<value>")
.reportType("<value>")
.call();
if (res.string().isPresent()) {
// gestionar 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 |
GetCompanyV21Response
| Tipo de error | Código de estado | Tipo de contenido |
|---|
| models/errors/APIException | 4XX, 5XX | / |
Obtener el perfil de la empresa
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetCompanyProfileV21Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetCompanyProfileV21Response res = sdk.fundamentals().getCompanyProfileV21()
.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 |
GetCompanyProfileV21Response
| Tipo de error | Código de estado | Tipo de contenido |
|---|
| models/errors/APIException | 4XX, 5XX | / |
Obtener clase de acciones
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetShareClassV21Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetShareClassV21Response res = sdk.fundamentals().getShareClass()
.symbols("<value>")
.asOf("<value>")
.period("<value>")
.reportType("<value>")
.call();
if (res.string().isPresent()) {
// gestionar 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 |
GetShareClassV21Response
| Tipo de error | Código de estado | Tipo de contenido |
|---|
| models/errors/APIException | 4XX, 5XX | / |
Obtener el perfil de la clase de acciones
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetShareClassProfileV21Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetShareClassProfileV21Response res = sdk.fundamentals().getShareClassProfile()
.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 |
GetShareClassProfileV21Response
| Tipo de error | Código de estado | Tipo de contenido |
|---|
| models/errors/APIException | 4XX, 5XX | / |
Obtener fundamentos V2
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetFundamentalsV2Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetFundamentalsV2Response res = sdk.fundamentals().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 |
GetFundamentalsV2Response
| Tipo de error | Código de estado HTTP | Tipo de contenido |
|---|
| models/errors/APIException | 4XX, 5XX | / |
Obtener la clasificación de activos
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetAssetClassificationV21Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetAssetClassificationV21Response res = sdk.fundamentals().getAssetClassification()
.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 corte |
period | Optional<String> | :heavy_minus_sign: | Período |
reportType | Optional<String> | :heavy_minus_sign: | Tipo de reporte |
GetAssetClassificationV21Response
| Tipo de error | Código de estado | Tipo de contenido |
|---|
| models/errors/APIException | 4XX, 5XX | / |
Obtener informes de resultados
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetEarningsReportsV21Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetEarningsReportsV21Response res = sdk.fundamentals().getEarningsReports()
.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 separada 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 |
GetEarningsReportsV21Response
| Tipo de error | Código de estado | Tipo de contenido |
|---|
| models/errors/APIException | 4XX, 5XX | / |
Obtener estados financieros v2.1
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.errors.BzhttpResp;
import org.benzinga.BZClient.models.operations.GetFinancialsV21Response;
public class Application {
public static void main(String[] args) throws BzhttpResp, Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetFinancialsV21Response res = sdk.fundamentals().getFinancialsV21()
.symbols("<value>")
.asOf("<value>")
.period("<value>")
.reportType("<value>")
.call();
if (res.strings().isPresent()) {
// gestionar 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 |
GetFinancialsV21Response
| Tipo de error | Código de estado | Tipo de contenido |
|---|
| models/errors/BzhttpResp | 400, 500 | application/json |
| models/errors/APIException | 4XX, 5XX | / |
Obtener fundamentos v3
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetFundamentalsV3Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetFundamentalsV3Response res = sdk.fundamentals().getV3()
.symbols("<value>")
.from("<value>")
.to("<value>")
.date("2024-10-27")
.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 |
from | Optional<String> | :heavy_minus_sign: | Fecha de inicio |
to | Optional<String> | :heavy_minus_sign: | Fecha de fin |
date | Optional<String> | :heavy_minus_sign: | Tipo de informe |
GetFundamentalsV3Response
| Tipo de error | Código de estado | Tipo de contenido |
|---|
| models/errors/APIException | 4XX, 5XX | / |
Obtener balance general v3
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.errors.BzhttpResp;
import org.benzinga.BZClient.models.operations.GetBalanceSheetV3Response;
public class Application {
public static void main(String[] args) throws BzhttpResp, Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetBalanceSheetV3Response res = sdk.fundamentals().getBalanceSheetV3()
.symbols("<value>")
.from("<value>")
.to("<value>")
.date("2023-12-25")
.call();
if (res.strings().isPresent()) {
// manejar la respuesta
}
}
}
| Parâmetro | Tipo | Obligatorio | Descripción |
|---|
symbols | String | :heavy_check_mark: | Símbolos (lista de símbolos separada por comas) |
from | Optional<String> | :heavy_minus_sign: | Desde |
to | Optional<String> | :heavy_minus_sign: | Hasta |
date | Optional<String> | :heavy_minus_sign: | Tipo de informe |
GetBalanceSheetV3Response
| Tipo de error | Código de estado | Tipo de contenido |
|---|
| models/errors/BzhttpResp | 400 | application/json |
| models/errors/APIException | 4XX, 5XX | / |
Obtener flujo de caja v3
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.errors.BzhttpResp;
import org.benzinga.BZClient.models.operations.GetCashFlowV3Response;
public class Application {
public static void main(String[] args) throws BzhttpResp, Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetCashFlowV3Response res = sdk.fundamentals().getCashFlowV3()
.symbols("<value>")
.from("<value>")
.to("<value>")
.date("2024-05-15")
.call();
if (res.strings().isPresent()) {
// manejar la respuesta
}
}
}
| Parámetro | Tipo | Obligatorio | Descripción |
|---|
symbols | String | :heavy_check_mark: | Lista de símbolos separados por comas |
from | Optional<String> | :heavy_minus_sign: | Fecha inicial |
to | Optional<String> | :heavy_minus_sign: | Fecha final |
date | Optional<String> | :heavy_minus_sign: | Tipo de informe |
GetCashFlowV3Response
| Tipo de error | Código de estado | Tipo de contenido |
|---|
| models/errors/BzhttpResp | 400, 500 | application/json |
| models/errors/APIException | 4XX, 5XX | / |
Obtener el estado de resultados V3
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetIncomeStatementV3Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetIncomeStatementV3Response res = sdk.fundamentals().getIncomeStatement()
.symbols("<value>")
.from("<value>")
.to("<value>")
.date("2023-12-17")
.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 |
from | Optional<String> | :heavy_minus_sign: | Fecha de inicio |
to | Optional<String> | :heavy_minus_sign: | Fecha de fin |
date | Optional<String> | :heavy_minus_sign: | Tipo de informe |
GetIncomeStatementV3Response
| Tipo de error | Código de estado | Tipo de contenido |
|---|
| models/errors/APIException | 4XX, 5XX | / |
Obtener ratios del precio de la acción
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.errors.BzhttpResp;
import org.benzinga.BZClient.models.operations.GetSharePriceRatiosV3Response;
public class Application {
public static void main(String[] args) throws BzhttpResp, Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetSharePriceRatiosV3Response res = sdk.fundamentals().getSharePriceRatios()
.symbols("<value>")
.from("<value>")
.to("<value>")
.date("2024-06-28")
.call();
if (res.strings().isPresent()) {
// manejar la respuesta
}
}
}
| Parámetro | Tipo | Obligatorio | Descripción |
|---|
symbols | String | :heavy_check_mark: | Lista de símbolos separados por comas |
from | Optional<String> | :heavy_minus_sign: | Fecha de inicio |
to | Optional<String> | :heavy_minus_sign: | Fecha de fin |
date | Optional<String> | :heavy_minus_sign: | Tipo de informe |
GetSharePriceRatiosV3Response
| Tipo de error | Código de estado | Tipo de contenido |
|---|
| models/errors/BzhttpResp | 400, 500 | application/json |
| models/errors/APIException | 4XX, 5XX | / |