股票基础信息交易所
返回交易所官方当前股票基础资料;不传参数默认全部支持交易所。
用于查看交易所官方当前股票基础资料,例如名称、板块、行业、地区、上市日期和股本信息;这是当前列表口径,不表示历史某天状态。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
exchange | string | 否 | 交易所筛选:SSE、SZSE、BSE;不传默认全部。 | |
code | string | 否 | 股票代码筛选,例如 000001、000001.SZ、sz000001;支持列表或逗号分隔。 | |
name | string | 否 | 证券简称筛选,精确匹配;支持列表或逗号分隔。 |
参数说明
这是当前官方股票基础资料接口;不传参数默认返回全部支持交易所。不同交易所公开字段不完全一致,源端未提供的字段返回空值。
参数示例
# 查询单只股票
client.call("stock_basic_info_exchange", code="000001.SZ")
# 按交易所查询
client.call("stock_basic_info_exchange", exchange="SZSE")
# 批量查询
client.call(
"stock_basic_info_exchange",
code=["000001.SZ", "600000.SH"],
)返回字段
| 字段 | 类型 | 说明 |
|---|---|---|
instrument_id | string | AxData 统一证券代码,例如 000001.SZ、600000.SH、430047.BJ。 |
symbol | string | 证券代码,不带交易所后缀,例如 000001。 |
exchange | string | 交易所代码,建议值为 SSE、SZSE、BSE。 |
asset_type | string | 资产类型,本接口固定为 stock。 |
name | string | 证券简称。 |
security_full_name | string | 证券全称;上交所通常提供,其他交易所可能为空。 |
market_code | string | 市场板块代码;上交所、北交所可能提供,没有时为空。 |
market | string | 市场板块名称,例如主板、创业板、科创板、北交所。 |
industry_code | string | 行业代码;上交所通常提供,其他交易所可能为空。 |
industry | string | 行业名称;各交易所口径不同,源端提供时返回。 |
region_code | string | 地区代码;上交所通常提供,其他交易所可能为空。 |
region | string | 地区名称;上交所、北交所可能提供,没有时为空。 |
company_code | string | 公司代码;上交所通常提供,其他交易所可能为空。 |
company_short_name | string | 公司简称;上交所通常提供,其他交易所可能为空。 |
company_full_name | string | 公司法定全称;上交所通常提供,其他交易所可能为空。 |
company_short_name_en | string | 公司英文简称;上交所、北交所可能提供,没有时为空。 |
company_full_name_en | string | 公司英文全称;上交所通常提供,其他交易所可能为空。 |
listing_status | string | AxData 上市状态,建议值 listed、delisted、suspended、unknown。 |
list_date | string | 上市日期,格式为 YYYYMMDD。 |
delist_date | string | 退市日期,格式为 YYYYMMDD;未退市为空。 |
total_share | number | 总股本,单位:亿股;深交所、北交所通常提供,上交所当前列表可能为空。 |
float_share | number | 流通股本,单位:亿股;深交所、北交所通常提供,上交所当前列表可能为空。 |
is_profit | string | 是否尚未盈利;深交所可能提供,没有时为空。 |
is_vie | string | 是否具有协议控制架构;深交所可能提供,没有时为空。 |
has_weighted_voting_rights | string | 是否具有表决权差异安排;深交所可能提供,没有时为空。 |
sponsor | string | 保荐机构或主办券商;北交所通常提供,其他交易所可能为空。 |
share_report_date | string | 股本数据报告日期,格式 YYYYMMDD;北交所通常提供,其他交易所可能为空。 |
调用示例
Python SDK
import axdata as ax
client = ax.AxDataClient()
rows = client.call(
"stock_basic_info_exchange",
code='000001.SZ',
)
HTTP API
POST /v1/request/stock_basic_info_exchange
Content-Type: application/json
{
"params": {
"code": "000001.SZ"
}
}
真实样例快照
展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。
请求参数
{
"code": "000001.SZ"
}
响应样例
| instrument_id | symbol | exchange | asset_type | name | security_full_name | market_code | market | industry_code | industry | region_code | region | company_code | company_short_name | company_full_name | company_short_name_en | company_full_name_en | listing_status | list_date | delist_date | total_share | float_share | is_profit | is_vie | has_weighted_voting_rights | sponsor | share_report_date |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 000001.SZ | 000001 | SZSE | stock | 平安银行 | 主板 | J 金融业 | listed | 19910403 | 194.05918198 | 194.05685028 | - | - | - |
生成时间:2026-07-06T16:54:55+00:00