历史板块成分股开盘红
临时获取开盘红历史板块成分股数据,默认不入库。
按开盘红板块 ID 和历史日期请求成分股,默认不入库。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
plate_id | string | 是 | 板块 ID。 | |
trade_date | string | 是 | 历史交易日期,必须早于今天。 |
返回字段
| 字段 | 类型 | 说明 |
|---|---|---|
trade_date | date | 交易日期。 |
plate_id | string | 板块 ID。 |
instrument_id | string | AxData 统一证券代码。 |
symbol | string | 六位证券代码。 |
exchange | string | 交易所代码:SSE、SZSE、BSE。 |
name | string | 股票简称。 |
tags | string | 概念标签。 |
last_price | number | 现价。 |
change_pct | number | 涨跌幅。 |
amount | number | 成交额。 |
turnover_rate | number | 换手率。 |
float_market_value | number | 流通市值。 |
main_net | number | 主力净额。 |
limit_tag | string | 连板标签。 |
rank_tag | string | 龙虎榜/龙头标签。 |
limit_count | integer | 近期涨停次数。 |
调用示例
Python SDK
import axdata as ax
client = ax.AxDataClient()
rows = client.call(
"kph_sector_constituents_history",
plate_id='801001',
trade_date='20260513',
)
HTTP API
POST /v1/request/kph_sector_constituents_history
Content-Type: application/json
{
"params": {
"plate_id": "801001",
"trade_date": "20260513"
}
}
真实样例快照
展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。
请求参数
{
"plate_id": "801001",
"trade_date": "20260513"
}
响应样例
| instrument_id | plate_id |
|---|---|
| 000001.SZ | 801001 |
生成时间:2026-07-06T16:54:55+00:00