개요
사용 가능한 작업
- getV1 - 지연 시세 V1 가져오기
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
quotedelayed()
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetQuoteDelayedV1Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetQuoteDelayedV1Response res = sdk.quotedelayed().getV1()
.symbols("<value>")
.isin("<value>")
.cik("<value>")
.call();
if (res.string().isPresent()) {
// 응답 처리
}
}
}
| Parameter | Type | Required | Description |
|---|---|---|---|
symbols | Optional<String> | :heavy_minus_sign: | 콤마로 구분된 심볼 목록 |
isin | Optional<String> | :heavy_minus_sign: | 해당 종목의 국제증권식별번호(ISIN) |
cik | Optional<String> | :heavy_minus_sign: | 해당 종목의 CIK(SEC 기업 식별자) |
| 오류 유형 | 상태 코드 | 콘텐츠 유형 |
|---|---|---|
| models/errors/APIException | 4XX, 5XX | / |
Was this page helpful?