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()) {
// 응답 처리
}
}
}
| Parameter | Type | Required | Description |
|---|
page | Optional<Long> | :heavy_minus_sign: | 페이지 번호 |
pagesize | Optional<Long> | :heavy_minus_sign: | 페이지당 항목 수 |
GetAnalystReportsRawTextDataResponse
| 오류 유형 | 상태 코드 | 콘텐츠 유형 |
|---|
| models/errors/APIException | 4XX, 5XX | / |