(derivedFiguresAndRatios())
- get - Get derived figures and ratios V3
Get derived figures and ratios for a list of symbols
package hello.world;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetDerivedFiguresAndRatiosV3Response;
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();
GetDerivedFiguresAndRatiosV3Response res = sdk.derivedFiguresAndRatios().get()
.symbols("<value>")
.from("<value>")
.to("<value>")
.date("2024-08-31")
.call();
if (res.string().isPresent()) {
// handle response
}
}
}| Parameter | Type | Required | Description |
|---|---|---|---|
symbols |
String | ✔️ | Comma separated list of symbols |
from |
Optional<String> | ➖ | From date |
to |
Optional<String> | ➖ | To date |
date |
Optional<String> | ➖ | Report Type |
GetDerivedFiguresAndRatiosV3Response
| Error Type | Status Code | Content Type |
|---|---|---|
| models/errors/APIException | 4XX, 5XX | */* |