> ## Documentation Index
> Fetch the complete documentation index at: https://docs.benzinga.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Fundamentos

> fundamentals()

[\< VOLVER](/es/sdks/languages/java#fundamentals)

<div id="overview">
  ## Descripción general
</div>

<div id="available-operations">
  ### Operaciones disponibles
</div>

* [getV21](#getv21) - Obtener Fundamentos V2.1
* [getAlphaBeta](#getalphabeta) - Obtener Alfa Beta V2.1
* [getCompanyV21](#getcompanyv21) - Obtener datos de la empresa v2.1
* [getCompanyProfileV21](#getcompanyprofilev21) - Obtener perfil de la empresa v2.1
* [getShareClass](#getshareclass) - Obtener clase de acciones V2.1
* [getShareClassProfile](#getshareclassprofile) - Obtener perfil de la clase de acciones V2.1
* [get](#get) - Obtener Fundamentos V2
* [getAssetClassification](#getassetclassification) - Obtener clasificación de activos V2.1
* [getEarningsReports](#getearningsreports) - Obtener informes de resultados V2.1
* [getFinancialsV21](#getfinancialsv21) - Obtener estados financieros V2.1
* [getV3](#getv3) - Obtener Fundamentos V3
* [getBalanceSheetV3](#getbalancesheetv3) - Obtener balance general V3
* [getCashFlowV3](#getcashflowv3) - Obtener flujos de efectivo V3
* [getIncomeStatement](#getincomestatement) - Obtener estado de resultados V3
* [getSharePriceRatios](#getsharepriceratios) - Obtener ratios del precio de la acción V3

<div id="getv21">
  ## getV21
</div>

Obtener fundamentos V2.1

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetFundamentalsV21Response](../../models/operations/GetFundamentalsV21Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/APIException | 4XX, 5XX         | */*               |

<div id="getalphabeta">
  ## getAlphaBeta
</div>

Obtener alfa y beta

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetAlphaBetaV21Response](../../models/operations/GetAlphaBetaV21Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/APIException | 4XX, 5XX         | */*               |

<div id="getcompanyv21">
  ## getCompanyV21
</div>

Obtener datos de la compañía

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetCompanyV21Response](../../models/operations/GetCompanyV21Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/APIException | 4XX, 5XX         | */*               |

<div id="getcompanyprofilev21">
  ## getCompanyProfileV21
</div>

Obtener el perfil de la empresa

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetCompanyProfileV21Response](../../models/operations/GetCompanyProfileV21Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/APIException | 4XX, 5XX         | */*               |

<div id="getshareclass">
  ## getShareClass
</div>

Obtener clase de acciones

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetShareClassV21Response](../../models/operations/GetShareClassV21Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/APIException | 4XX, 5XX         | */*               |

<div id="getshareclassprofile">
  ## getShareClassProfile
</div>

Obtener el perfil de la clase de acciones

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetShareClassProfileV21Response](../../models/operations/GetShareClassProfileV21Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/APIException | 4XX, 5XX         | */*               |

<div id="get">
  ## get
</div>

Obtener fundamentos V2

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetFundamentalsV2Response](../../models/operations/GetFundamentalsV2Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado HTTP | Tipo de contenido |
| -------------------------- | --------------------- | ----------------- |
| models/errors/APIException | 4XX, 5XX              | */*               |

<div id="getassetclassification">
  ## getAssetClassification
</div>

Obtener la clasificación de activos

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetAssetClassificationV21Response](../../models/operations/GetAssetClassificationV21Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/APIException | 4XX, 5XX         | */*               |

<div id="getearningsreports">
  ## getEarningsReports
</div>

Obtener informes de resultados

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetEarningsReportsV21Response](../../models/operations/GetEarningsReportsV21Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/APIException | 4XX, 5XX         | */*               |

<div id="getfinancialsv21">
  ## getFinancialsV21
</div>

Obtener estados financieros v2.1

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetFinancialsV21Response](../../models/operations/GetFinancialsV21Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/BzhttpResp   | 400, 500         | application/json  |
| models/errors/APIException | 4XX, 5XX         | */*               |

<div id="getv3">
  ## getV3
</div>

Obtener fundamentos v3

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetFundamentalsV3Response](../../models/operations/GetFundamentalsV3Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/APIException | 4XX, 5XX         | */*               |

<div id="getbalancesheetv3">
  ## getBalanceSheetV3
</div>

Obtener balance general v3

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetBalanceSheetV3Response](../../models/operations/GetBalanceSheetV3Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/BzhttpResp   | 400              | application/json  |
| models/errors/APIException | 4XX, 5XX         | */*               |

<div id="getcashflowv3">
  ## getCashFlowV3
</div>

Obtener flujo de caja v3

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetCashFlowV3Response](../../models/operations/GetCashFlowV3Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/BzhttpResp   | 400, 500         | application/json  |
| models/errors/APIException | 4XX, 5XX         | */*               |

<div id="getincomestatement">
  ## getIncomeStatement
</div>

Obtener el estado de resultados V3

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetIncomeStatementV3Response](../../models/operations/GetIncomeStatementV3Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/APIException | 4XX, 5XX         | */*               |

<div id="getsharepriceratios">
  ## getSharePriceRatios
</div>

Obtener ratios del precio de la acción

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
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
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

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

<div id="response">
  ### Respuesta
</div>

**[GetSharePriceRatiosV3Response](../../models/operations/GetSharePriceRatiosV3Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/BzhttpResp   | 400, 500         | application/json  |
| models/errors/APIException | 4XX, 5XX         | */*               |
