概要
利用可能な操作
- get - Earning ratios V2.1 の取得
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
earningRatios()
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetEarningRatiosV21Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetEarningRatiosV21Response res = sdk.earningRatios().get()
.symbols("<value>")
.asOf("<value>")
.period("<value>")
.reportType("<value>")
.call();
if (res.string().isPresent()) {
// レスポンスを処理する
}
}
}
| Parameter | Type | Required | Description |
|---|---|---|---|
symbols | Optional<String> | :heavy_minus_sign: | カンマ区切りのシンボル一覧 |
asOf | Optional<String> | :heavy_minus_sign: | 基準日 |
period | Optional<String> | :heavy_minus_sign: | 会計期間 |
reportType | Optional<String> | :heavy_minus_sign: | レポート種別 |
| エラー種別 | ステータスコード | コンテンツタイプ |
|---|---|---|
| models/errors/APIException | 4XX, 5XX | / |
Was this page helpful?