package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.errors.ApiErrorResponse;
import org.benzinga.BZClient.models.operations.GetInsiderTransactionRequest;
import org.benzinga.BZClient.models.operations.GetInsiderTransactionResponse;
import org.benzinga.BZClient.models.operations.PathParamType;
public class Application {
public static void main(String[] args) throws ApiErrorResponse, Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetInsiderTransactionRequest req = GetInsiderTransactionRequest.builder()
.type(PathParamType.FILINGS)
.build();
GetInsiderTransactionResponse res = sdk.insiderTransaction().get()
.request(req)
.call();
if (res.modelsInsiderTransactionFilingJSON().isPresent()) {
// handle response
}
}
}