概要
利用可能な操作
- get - アナリストレポートの未加工テキストデータを取得
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
analystReportsRawText()
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetAnalystReportsRawTextDataResponse;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetAnalystReportsRawTextDataResponse res = sdk.analystReportsRawText().get()
.page(700347L)
.pagesize(558834L)
.call();
if (res.modelsAnalystReportRawTexts().isPresent()) {
// レスポンスを処理する
}
}
}
| パラメータ | 型 | 必須 | 説明 |
|---|---|---|---|
page | Optional<Long> | :heavy_minus_sign: | ページ番号 |
pagesize | Optional<Long> | :heavy_minus_sign: | 1ページあたりの件数 |
| エラー種別 | ステータスコード | Content-Type |
|---|---|---|
| models/errors/APIException | 4XX, 5XX | / |
Was this page helpful?