Documentation Index
Fetch the complete documentation index at: https://docs.benzinga.com/llms.txt
Use this file to discover all available pages before exploring further.
< 戻る
- get - バリュエーション指標比率 v2.1 を取得
シンボル、ISIN (国際証券識別番号) 、CIK のリストに対するバリュエーション比率を取得します。
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetValuationRatiosV21Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetValuationRatiosV21Response res = sdk.valuationRatios().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: | レポートタイプ |
GetValuationRatiosV21Response
| エラータイプ | ステータスコード | コンテンツタイプ |
|---|
| models/errors/APIException | 4XX, 5XX | / |