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.
< 뒤로
심볼, 국제증권식별번호(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()) {
// 응답 처리
}
}
}
| 매개변수 | 타입 | 필수 여부 | 설명 |
|---|
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 | / |