(fda())
- get - Get FDA
FDA approvals, clinical trials, and PDUFA dates
package hello.world;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetFdaRequest;
import com.benzinga.bzclient.models.operations.GetFdaResponse;
import java.lang.Exception;
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()) {
// handle response
}
}
}
Parameter | Type | Required | Description |
---|---|---|---|
request |
GetFdaRequest | ✔️ | The request object to use for the request. |
Error Type | Status Code | Content Type |
---|---|---|
models/errors/APIException | 4XX, 5XX | */* |