跳转到主要内容
POST
/
v1
/
quotes
批量查询实时行情
curl --request POST \
  --url https://api.tickflow.org/v1/quotes \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "symbols": [
    "600000.SH",
    "000001.SZ",
    "AAPL.US"
  ],
  "universes": [
    "CN_Equity_A",
    "CN_ETF"
  ]
}
'
{
  "data": [
    {
      "amount": 123,
      "high": 123,
      "last_price": 123,
      "low": 123,
      "open": 123,
      "prev_close": 123,
      "region": "CN",
      "symbol": "<string>",
      "timestamp": 123,
      "volume": 123,
      "ext": {
        "type": "cn_equity",
        "amplitude": 123,
        "change_amount": 123,
        "change_pct": 123,
        "name": "<string>",
        "turnover_rate": 123
      },
      "session": "pre_market"
    }
  ]
}

授权

x-api-key
string
header
必填

请求体

application/json

实时行情批量查询请求体 (POST)

symbols
string[] | null
示例:
["600000.SH", "000001.SZ", "AAPL.US"]
universes
string[] | null
示例:
["CN_Equity_A", "CN_ETF"]

响应

查询成功

实时行情响应

data
object[]
必填