概要
利用可能な操作
- 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?