Corporate Actions Listing Applicants
取得 申請上市櫃公司資料
GET /corporate-actions/listing-applicants/
Parameters
| Name | Type | Description |
|---|---|---|
start_date | string | 開始日期(格式:yyyy-MM-dd) |
end_date | string | 結束日期(格式:yyyy-MM-dd)可輸入未來日期取得未來預告資訊 |
sort | string | 排序方式(asc、desc) |
Response
| Name | Type | Description |
|---|---|---|
symbol | string | 公司代號 |
name | string | 公司簡稱 |
exchange | string | 申請類別:TWSE(上市)、TPEx(上櫃) |
applicationDate | string | 申請日期 |
chairman | string | 董事長 |
capitalAtApplication | number | 申請時股本(仟元) |
reviewCommitteeDate | string | 上市審議委員審議日 |
boardApprovalDate | string | 交易所董事會通過日 |
contractFilingDate | string | 主管機關核准日期 |
listedDate | string | 股票上市、櫃買賣日期 |
underwriter | string | 承銷商 |
underwritingPrice | number | 承銷價 |
remarks | string | 備註 |
Example
- Python
- Node.js
from taishin_sdk import TaishinSDK, Order
sdk = TaishinSDK()
accounts = sdk.login("Your ID", "Your password", "Your cert path", "Your cert password") # 需登入後,才能取得行情權限
sdk.init_realtime(accounts[0]) # 建立行情連線
reststock = sdk.marketdata.rest_client.stock
reststock.corporate_actions.listing_applicants(**{"start_date": "2025-01-07", "end_date": "2026-01-07"})
const { TaishinSDK } = require('taishin-sdk');
const sdk = new TaishinSDK();
const accounts = sdk.login("Your ID", "Your Password", "Your Cert Path", "Your Cert Password");
sdk.initRealtime(accounts[0]); // 建立行情連線
const client = sdk.marketdata.restClient
client.stock.corporateActions.listingApplicants({ start_date: '2025-01-07', end_date: '2026-01-07' })
.then(data => console.log(data));
Response Body:
{
"start_date": "2025-01-07",
"end_date": "2026-01-07",
"sort": "desc",
"data": [
...
{
"symbol": "7762",
"name": "吉晟生",
"exchange": "TWSE",
"applicationDate": "2025-09-24",
"chairman": "楊朝堂",
"capitalAtApplication": 572328,
"reviewCommitteeDate": null,
"boardApprovalDate": null,
"contractFilingDate": null,
"listedDate": null,
"underwriter": "宏遠",
"underwritingPrice": null,
"remarks": "創新板,114-10-31撤件"
},
{
"symbol": "6961",
"name": "旅天下",
"exchange": "TPEx",
"applicationDate": "2025-09-17",
"chairman": "李嘉寅",
"capitalAtApplication": 236340000,
"reviewCommitteeDate": "2025-11-06",
"boardApprovalDate": "2025-11-21",
"contractApprovalDate": "2025-11-25",
"listedDate": null,
"underwriter": "福邦",
"underwritingPrice": null,
"remarks": ""
},
{
"symbol": "4590",
"name": "富田",
"exchange": "TWSE",
"applicationDate": "2025-09-15",
"chairman": "張金鋒",
"capitalAtApplication": 511941,
"reviewCommitteeDate": "2025-10-23",
"boardApprovalDate": "2025-11-18",
"contractFilingDate": "2025-11-26",
"listedDate": null,
"underwriter": "中信",
"underwritingPrice": null,
"remarks": "創新板"
},
{
"symbol": "6725",
"name": "矽科宏晟",
"exchange": "TPEx",
"applicationDate": "2025-09-11",
"chairman": "郭錦松",
"capitalAtApplication": 330000000,
"reviewCommitteeDate": "2025-10-20",
"boardApprovalDate": "2025-10-30",
"contractApprovalDate": "2025-11-04",
"listedDate": "2025-12-30",
"underwriter": "台新",
"underwritingPrice": 188,
"remarks": ""
}
]
}