> ## 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.

# アナリストレポートの未加工テキスト

> analystReportsRawText()

[\< 戻る](/ja/sdks/languages/java#analystreportsrawtext)

<div id="overview">
  ## 概要
</div>

<div id="available-operations">
  ### 利用可能な操作
</div>

* [get](#get) - アナリストレポートの未加工テキストデータを取得

<div id="get">
  ## get
</div>

アナリストレポートのテキスト生データを取得

<div id="example-usage">
  ### 使用例
</div>

```java theme={null}
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()) {
            // レスポンスを処理する
        }
    }
}
```

<div id="parameters">
  ### パラメータ
</div>

| パラメータ      | 型                 | 必須                   | 説明         |
| ---------- | ----------------- | -------------------- | ---------- |
| `page`     | *Optional\<Long>* | :heavy\_minus\_sign: | ページ番号      |
| `pagesize` | *Optional\<Long>* | :heavy\_minus\_sign: | 1ページあたりの件数 |

<div id="response">
  ### レスポンス
</div>

**[GetAnalystReportsRawTextDataResponse](../../models/operations/GetAnalystReportsRawTextDataResponse.md)**

<div id="errors">
  ### エラー
</div>

| エラー種別                      | ステータスコード | Content-Type |
| -------------------------- | -------- | ------------ |
| models/errors/APIException | 4XX, 5XX | */*          |
