(economics())
- get - Get Economics
Returns the economic calendar data
package hello.world;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetEconomicsRequest;
import com.benzinga.bzclient.models.operations.GetEconomicsResponse;
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();
GetEconomicsRequest req = GetEconomicsRequest.builder()
.build();
GetEconomicsResponse res = sdk.economics().get()
.request(req)
.call();
if (res.modelsEconomicJSON().isPresent()) {
// handle response
}
}
}
Parameter | Type | Required | Description |
---|---|---|---|
request |
GetEconomicsRequest | ✔️ | The request object to use for the request. |
Error Type | Status Code | Content Type |
---|---|---|
models/errors/APIException | 4XX, 5XX | */* |