公司概况通达信
查询公司发行上市资料和指数调入调出记录。 源端直取默认不写入本地数据。
查询公司发行上市资料和指数调入调出记录。 源端直取默认不写入本地数据。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
code | string | 是 | 股票代码:支持 000001、000001.SZ、sz000001;批量可传列表或英文逗号分隔字符串。 | |
type | string | 否 | 资料类型:listing 发行上市信息,index_change 指数调入调出;默认 listing。 | "listing" |
返回字段
| 字段 | 类型 | 说明 |
|---|---|---|
instrument_id | string | AxData 统一证券代码,例如 000001.SZ。 |
symbol | string | 交易所原始六位代码。 |
stock_type | string | 股票类别。 |
list_date | date | 上市日期。 |
issue_method | string | 发行方式。 |
issue_system | string | 发行制度。 |
par_value | number | 每股面值,单位:元。 |
issue_price | number | 发行价格,单位:元。 |
issue_volume | number | 发行数量。 |
raised_amount | number | 实际募资总额。 |
net_raised_amount | number | 实际募资净额。 |
first_open | number | 首日开盘价,单位:元。 |
first_close | number | 首日收盘价,单位:元。 |
lead_underwriter | string | 主承销商。 |
sponsor | string | 上市保荐人。 |
publish_date | date | 指数调整公布日期。 |
change_direction | string | 指数调入/调出方向。 |
index_name | string | 指数名称。 |
publish_date_change_pct | number | 公布日涨跌幅,单位:%。 |
effective_date | date | 指数调整日期。 |
effective_date_change_pct | number | 调整日涨跌幅,单位:%。 |
调用示例
Python SDK
import axdata as ax
client = ax.AxDataClient()
rows = client.call(
"stock_company_profile_tdx",
code='000001.SZ',
type='listing',
)
HTTP API
POST /v1/request/stock_company_profile_tdx
Content-Type: application/json
{
"params": {
"code": "000001.SZ",
"type": "listing"
}
}
真实样例快照
展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。
请求参数
{
"code": "000001.SZ",
"type": "listing"
}
响应样例
| stock_type | list_date | issue_method | issue_system | par_value | issue_price | issue_volume | raised_amount | net_raised_amount | first_open | first_close | lead_underwriter | sponsor | instrument_id | symbol |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| A股 | 19940509 | 申请表抽签限额认购 | 核准制 | 1.0 | 5.2 | 4680 | 24336 | 23390.2 | 7.2 | 6.76 | 巨田证券有限责任公司 | 巨田证券有限责任公司 | 000001.SZ | 000001 |
生成时间:2026-07-06T16:54:55+00:00