Documentation Index
Fetch the complete documentation index at: https://benzinga-2-locadex-parallel-main.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
< 戻る
- get - アナリストレポートの未加工テキストデータを取得
アナリストレポートのテキスト生データを取得
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ページあたりの件数 |
GetAnalystReportsRawTextDataResponse
| エラー種別 | ステータスコード | Content-Type |
|---|
| models/errors/APIException | 4XX, 5XX | / |