メインコンテンツへスキップ
GET
/
api
/
market-data
/
quote
/
depth
市場深度を取得
curl --request GET \
  --url https://openapi.fcontext.com/api/market-data/quote/depth \
  --header 'x-api-key: <api-key>'
{
  "depth": {
    "asks": [
      {
        "position": 123,
        "price": "<string>",
        "volume": "<string>",
        "orderNum": 123
      }
    ],
    "bids": [
      {
        "position": 123,
        "price": "<string>",
        "volume": "<string>",
        "orderNum": 123
      }
    ]
  }
}

承認

x-api-key
string
header
必須

アカウント設定で生成された Financial Context key。x-api-key: <key> として送信します。

クエリパラメータ

symbol
string
必須

証券シンボル。

レスポンス

市場深度(買い気配と売り気配のレベル)

depth
object

市場深度(買い気配と売り気配のレベル)。