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

# Fda

> fda()

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

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

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

* [get](#get) - Obtener FDA

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

Aprobaciones de la FDA, ensayos clínicos y fechas PDUFA

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

public class Application {

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

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

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

        GetFdaResponse res = sdk.fda().get()
                .request(req)
                .call();

        if (res.modelsFDAJSON().isPresent()) {
            // manejar la respuesta
        }
    }
}
```

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

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

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

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

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

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