新股发行巨潮
临时获取巨潮新股发行数据,默认不入库。
临时请求巨潮新股发行列表,默认只返回本地 limit 条且不入库。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
time_type | string | 否 | 源端时间范围参数 timetype,默认 36。 | "36" |
market | string | 否 | 源端市场代码,默认 ALL。 | "ALL" |
limit | integer | 否 | 最多返回行数,默认 100,最大 1000。 | 100 |
返回字段
| 字段 | 类型 | 说明 |
|---|---|---|
instrument_id | string | AxData 统一证券代码。 |
symbol | string | 六位证券代码。 |
exchange | string | 交易所代码:SSE、SZSE、BSE。 |
name | string | 证券简称。 |
listing_date | date | 上市日期,格式 YYYYMMDD。 |
subscription_date | date | 申购日期,格式 YYYYMMDD。 |
issue_price | number | 发行价,单位:元。 |
total_issue_shares | number | 总发行数量,单位/口径沿用巨潮源端。 |
issue_pe | number | 发行市盈率。 |
online_lottery_rate | number | 上网发行中签率,源端百分比数值口径。 |
lottery_result_announcement_date | date | 摇号结果公告日,格式 YYYYMMDD。 |
winning_announcement_date | date | 中签公告日,格式 YYYYMMDD。 |
payment_date | date | 中签缴款日,格式 YYYYMMDD。 |
online_subscription_limit | number | 网上申购上限,单位/口径沿用巨潮源端。 |
online_issue_shares | number | 上网发行数量,单位/口径沿用巨潮源端。 |
调用示例
Python SDK
import axdata as ax
client = ax.AxDataClient()
rows = client.call(
"stock_new_ipo_cninfo",
limit=1,
market='ALL',
time_type='36',
)
HTTP API
POST /v1/request/stock_new_ipo_cninfo
Content-Type: application/json
{
"params": {
"time_type": "36",
"market": "ALL",
"limit": 1
}
}
真实样例快照
展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。
请求参数
{
"time_type": "36",
"market": "ALL",
"limit": 1
}
响应样例
| instrument_id | symbol | exchange | name | listing_date | subscription_date | issue_price | total_issue_shares | issue_pe | online_lottery_rate | lottery_result_announcement_date | winning_announcement_date | payment_date | online_subscription_limit | online_issue_shares |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 301583.SZ | 301583 | SZSE | 托伦斯 | 20260629 | 22.6 | 4636.8423 | 44.82 | 0.01526105 | 20260701 | 20260630 | 20260701 | 0.95 | 1622.9 |
生成时间:2026-07-06T16:54:55+00:00