Skip to main content
GET
/
api
/
aitaquote
/
quote
获取实时报价
curl --request GET \
  --url https://fcontext.com/api/aitaquote/quote \
  --header 'x-api-key: <api-key>'
{
  "quote": [
    {
      "symbol": "AAPL.US",
      "lastDone": "<string>",
      "prevClose": "<string>",
      "open": "<string>",
      "high": "<string>",
      "low": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "volume": "<string>",
      "turnover": "<string>",
      "tradeStatus": 123
    }
  ]
}

Authorizations

x-api-key
string
header
required

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

Query Parameters

symbols
string
required

标的代码列表,使用英文逗号分隔,例如 AAPL.US,700.HK

Response

实时报价

quote
object[]