Skip to main content
POST
/
v1
/
quant
/
quotes
/
kline
/
batch
Get batch kline data for multiple symbols
curl --request POST \
  --url https://api.reportify.cn/v1/quant/quotes/kline/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "symbols": [
    "<string>"
  ],
  "kline_type": "1D",
  "market": "cn",
  "stock_type": "stock",
  "start_datetime": "2023-11-07T05:31:56Z",
  "end_datetime": "2023-11-07T05:31:56Z"
}
'
{
  "datas": [
    {}
  ],
  "metadata": {}
}
批量获取多只股票的 K 线数据,通过 kline_type 参数支持多种周期。
curl -X POST "https://api.reportify.cn/v1/quant/quotes/kline/batch" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "symbols": ["000001", "600519"],
    "kline_type": "1D",
    "market": "cn"
  }'

请求参数

symbols
array
required
股票代码列表
kline_type
string
default:"1D"
K 线周期类型:
  • 1M - 1 分钟线
  • 5M - 5 分钟线
  • 15M - 15 分钟线
  • 30M - 30 分钟线
  • 60M - 60 分钟线
  • 1D - 日线(默认)
  • 1W - 周线
  • 1MO - 月线
market
string
default:"cn"
股票市场:cn(A股), hk(港股), us(美股)
stock_type
string
default:"stock"
股票类型:stock(股票), etf(ETF), index(指数), sw(申万指数)
start_datetime
string
开始时间,格式:YYYY-MM-DD HH:MM:SS(可选,不传时按 kline_type 自动推算)
end_datetime
string
结束时间,格式:YYYY-MM-DD HH:MM:SS(可选,默认当前时间)

响应参数

datas
array
K 线数据列表
metadata
object
查询元数据,包含 kline_type, start_datetime, end_datetime, count

响应示例

{
  "datas": [
    {
      "date": "2026-01-02",
      "symbol": "000001",
      "open": 12.15,
      "high": 12.30,
      "low": 12.10,
      "close": 12.25,
      "volume": 45678900
    },
    {
      "date": "2026-01-02",
      "symbol": "600519",
      "open": 1580.00,
      "high": 1595.00,
      "low": 1575.00,
      "close": 1590.00,
      "volume": 12345678
    }
  ],
  "metadata": {
    "kline_type": "1D",
    "start_datetime": "2026-01-01 00:00:00",
    "end_datetime": "2026-01-31 00:00:00",
    "count": 2
  }
}

使用示例

批量获取日线数据

import requests

response = requests.post(
    "https://api.reportify.cn/v1/quant/quotes/kline/batch",
    headers={"Authorization": "Bearer <token>"},
    json={
        "symbols": ["000001", "600519", "000002"],
        "kline_type": "1D",
        "start_datetime": "2026-01-01 00:00:00",
        "end_datetime": "2026-03-31 00:00:00"
    }
)
data = response.json()
for row in data["datas"]:
    print(f"{row['symbol']} {row['date']}: 收{row['close']}")

批量获取 5 分钟 K 线

response = requests.post(
    "https://api.reportify.cn/v1/quant/quotes/kline/batch",
    headers={"Authorization": "Bearer <token>"},
    json={
        "symbols": ["000001", "600519"],
        "kline_type": "5M",
        "start_datetime": "2026-04-09 09:30:00",
        "end_datetime": "2026-04-09 15:00:00"
    }
)

Authorizations

Authorization
string
header
required

Enter your Bearer token

Body

application/json

Batch kline request input.

symbols
string[]
required

List of stock codes (required)

Minimum array length: 1
kline_type
enum<string>
default:1D

Kline period type

Available options:
1M,
5M,
15M,
30M,
60M,
1D,
1W,
1MO
market
enum<string>
default:cn

Stock market

Available options:
cn,
hk,
us
stock_type
enum<string>
default:stock

Stock type

Available options:
stock,
etf,
index,
sw
start_datetime
string<date-time> | null

Start datetime (YYYY-MM-DD HH:MM:SS)

end_datetime
string<date-time> | null

End datetime (YYYY-MM-DD HH:MM:SS)

Response

Successful Response

Kline data response.

datas
Datas · object[]
required

Kline data list

metadata
Metadata · object
required

Query metadata (symbol, kline_type, start_datetime, end_datetime, count)