Skip to main content
GET
/
api
/
aitaquote
/
quote
/
depth
获取标的盘口
curl --request GET \
  --url https://fcontext.com/api/aitaquote/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
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

Financial Context key generated from account settings. Send it as x-api-key: <key>.

Query Parameters

symbol
string
required

标的代码。

Response

标的盘口(买卖各档位)

depth
object

标的盘口(买卖各档位)。