行业归属变动巨潮
临时获取巨潮行业归属变动数据,默认不入库。
临时请求巨潮上市公司行业归属变动,按单只股票和日期区间返回,默认不入库。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
code | string | 是 | 股票代码,支持 002594、002594.SZ。 | |
start_date | string | 否 | 变动开始日期,YYYYMMDD 或 YYYY-MM-DD;默认 20091227。 | "20091227" |
end_date | string | 否 | 变动结束日期,YYYYMMDD 或 YYYY-MM-DD;默认 20220713。 | "20220713" |
limit | integer | 否 | 最多返回行数,默认 100,最大 1000。 | 100 |
返回字段
| 字段 | 类型 | 说明 |
|---|---|---|
instrument_id | string | AxData 统一证券代码。 |
symbol | string | 六位证券代码。 |
exchange | string | 交易所代码:SSE、SZSE、BSE。 |
name | string | 新证券简称。 |
organization_name | string | 机构名称。 |
change_date | date | 行业归属变更日期,格式 YYYYMMDD。 |
classification_standard_code | string | 分类标准编码。 |
classification_standard | string | 分类标准名称。 |
industry_code | string | 行业编码。 |
industry_sector | string | 行业门类。 |
industry_subcategory | string | 行业次类。 |
industry_major | string | 行业大类。 |
industry_middle | string | 行业中类。 |
latest_record_flag | string | 最新记录标识,沿用巨潮源端。 |
调用示例
Python SDK
import axdata as ax
client = ax.AxDataClient()
rows = client.call(
"stock_industry_change_cninfo",
code='002594.SZ',
end_date='20220713',
limit=1,
start_date='20091227',
)
HTTP API
POST /v1/request/stock_industry_change_cninfo
Content-Type: application/json
{
"params": {
"code": "002594.SZ",
"start_date": "20091227",
"end_date": "20220713",
"limit": 1
}
}
真实样例快照
展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。
请求参数
{
"code": "002594.SZ",
"start_date": "20091227",
"end_date": "20220713",
"limit": 1
}
响应样例
| instrument_id | symbol | exchange | name | organization_name | change_date | classification_standard_code | classification_standard | industry_code | industry_sector | industry_subcategory | industry_major | industry_middle | latest_record_flag |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 002594.SZ | 002594 | SZSE | 比亚迪 | 比亚迪股份有限公司 | 20110608 | 008004 | 新财富行业分类标准 | N13 | 汽车和汽车零部件 | 汽车和汽车零部件 | 汽车和汽车零部件 | 汽车和汽车零部件 | 1 |
生成时间:2026-07-06T16:54:55+00:00