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

# Newsquantified

> newsquantified()

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

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

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

* [get](#get) - Obtener datos de NewsQuantified

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

Obtener datos de NewsQuantified

<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.GetNewsquantifiedDataRequest;
import org.benzinga.BZClient.models.operations.GetNewsquantifiedDataResponse;

public class Application {

    public static void main(String[] args) throws BzhttpResp, Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetNewsquantifiedDataRequest req = GetNewsquantifiedDataRequest.builder()
                .build();

        GetNewsquantifiedDataResponse res = sdk.newsquantified().get()
                .request(req)
                .call();

        if (res.modelsNewsquantifieds().isPresent()) {
            // gestionar respuesta
        }
    }
}
```

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

| Parámetro | Tipo                                                                                    | Obligatorio          | Descripción                                              |
| --------- | --------------------------------------------------------------------------------------- | -------------------- | -------------------------------------------------------- |
| `request` | [GetNewsquantifiedDataRequest](../../models/operations/GetNewsquantifiedDataRequest.md) | :heavy\_check\_mark: | El objeto de solicitud que se utilizará en la operación. |

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

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

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

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