Corporate Actions Listing Applicants
取得 申請上市櫃公司資料
GET /corporate-actions/listing-applicants/
info
屬於 開發者 及 進階用戶 方案的專屬功能! 基本用戶 開放體驗至 2026/2/12
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
- cURL
- Python
- Node.js
curl -X 'GET' \
'https://api.fugle.tw/marketdata/v1.0/stock/corporate-actions/listing-applicants?start_date=2025-01-07&end_date=2026-01-07' \
-H 'X-API-KEY: <YOUR_API_KEY>'
from fugle_marketdata import RestClient
client = RestClient(api_key = 'YOUR_API_KEY') # 輸入您的 API key
stock = client.stock # Stock REST API client
stock.corporate_actions.listing_applicants(**{"start_date": "2025-01-07", "end_date": "2026-01-07"})
const { RestClient } = require('@fugle/marketdata');
const client = new RestClient({ apiKey: 'YOUR_API_KEY' });
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": ""
}
]
}