AI agent?先讀 /llms.txt 取得全站索引。
市場結構與參考
公司基本資料——每家上市櫃公司的企業基本檔(登記名稱、產業、上市櫃別、重要日期)。
GET /v2/datasets/issuer-profile公司基本資料是台灣市場資料集,來源為 TWSE / TPEx,由 TW Market Data 以 GET /v2/datasets/issuer-profile 提供。
issuer-profile 為參考型資料集:每家發行公司一筆現用紀錄,非時間序列。用於將代碼解析為公司登記身分、產業與上市櫃別。此為現用快照——更名、產業重分類與資本變動的完整 point-in-time 歷史尚未整合。
| 欄位 | 型別 | 說明 |
|---|---|---|
symbol | string | 股票代碼。 |
company_name | string | 公司登記名稱。 |
market | string | |
industry | string | 產業分類。 |
isin | null | |
listing_date | null | 上市櫃日期。 |
chairperson | null | |
general_manager | null | |
capital | null | |
address | null | |
website | null | |
announcement_type | null | |
source_as_of | string |
| 列數 | 約 1,096 |
| 涵蓋起訖 | 2026-05-28 – 2026-08-21 |
| 分級 | 參考 |
| 量測時間 | 2026-09-01取自資料集登錄表 |
此為本端點的真實回應。資料列位於 "envelope.data" 之下,來源資訊如下方所示;各資料集形狀不盡相同,請以本頁為準。
{
"api_version": "v2",
"endpoint": "/v2/datasets/issuer-profile",
"request_id": "req_468ebd389ccf",
"plan_id": "enterprise",
"dataset": "issuer_profile",
"query": {
"symbol": "1101",
"market": null,
"limit": 50
},
"meta": {
"rows_returned": 1,
"mandatory_contract_fields_present": [
"api_version",
"data",
"data_as_of"
],
"plan": "enterprise",
"row_limit": 100000,
"is_limited": false
},
"envelope": {
"api_version": "v2",
"dataset": "issuer_profile",
"dataset_version": "v2.0.0-preview",
"release_version": "v2.2026-08-03.preview",
"release_date": "2026-08-03",
"data_as_of": "2026-08-03",
"request_context": {
"ticker": "1101",
"as_of_date": "2026-08-03",
"family": "discovery_reference",
"field_group_type": "canonical",
"dataset_view": "issuer_profile_v1"
},
"data": [
{
"symbol": "1101",
"company_name": "臺灣水泥股份有限公司",
"market": "TWSE",
"industry": "01",
"isin": null,
"listing_date": null,
"chairperson": null,
"general_manager": null,
"capital": null,
"address": null,
"website": null,
"source_name": "official_twse_openapi_t187ap03_l",
"source_url": null,
"announcement_type": null,
"source_as_of": "2026-08-03",
"updated_at": "2026-08-04T12:33:38.969690"
}
],
"quality": {
"freshness_state": "fresh",
"freshness_as_of": "2026-08-03",
"completeness_ratio": 1,
"quality_status": "ready"
},
"lineage": {
"source_role": "canonical",
"selected_source": "issuer_profile",
"fallback_chain": [],
"policy_notes": [
"official/public-first canonical",
"issuer profile mapped from canonical issuer_profiles table",
"nullable profile fields are preserved as-is"
]
},
"error": {
"error_code": null,
"error_message": null,
"dataset": "issuer_profile",
"request_id": "read-api-bcc60aec32d9",
"blocking_gate": null
}
}
}擷取自 2026-07-20 的線上 API。
本頁顯示原始中文值;英文頁會以標記取代,以維持全英文。
以下欄位會隨資料一併回傳,記錄這一列的來源。它們屬於出處而非本資料集要講的事實,因此列在這裡而不進欄位表。
source_namesource_urlupdated_at本服務部分資料取自政府資料開放平臺(data.gov.tw),依「政府資料開放授權條款-第1版」授權利用。資料提供機關:臺灣證券交易所、證券櫃檯買賣中心、臺灣期貨交易所、臺灣集中保管結算所、國家發展委員會、中央銀行、經濟部統計處、財政部關務署。本服務之加值處理、衍生計算與呈現方式由 TWMD 負責,與各資料提供機關無涉。
TW Market Data. (n.d.). 公司基本資料 [Data set]. TW Market Data. Retrieved 2026-09-05, from https://twmarketdata.com/zh-TW/docs/api/structure-reference/issuer-profile
版本取自資料集自己的 as_of,不是這一頁的產生日期。沒有 as_of 的資料集就不列這個欄位,不會補一個看起來合理的值。 驗證簽章
可與本資料集對齊的其他資料集。每組都標出可用來 join 的欄位,規劃跨表查詢時不必自己猜。
curl "https://api.twmarketdata.com/v2/datasets/issuer-profile?symbol=1101" \
-H "X-API-Key: sk_live_..."| 參數 | 必填 | 型別 | 說明 |
|---|---|---|---|
symbol | 否 | string | 以股票代碼篩選單一標的。 |
limit | 否 | integer | 回傳筆數上限。 |
import requests
resp = requests.get(
"https://api.twmarketdata.com/v2/datasets/issuer-profile",
params={"symbol": "1101"},
headers={"X-API-Key": "sk_live_..."},
)
resp.raise_for_status()
print(resp.json()["envelope"]["data"])此端點為 GET /v2/datasets/issuer-profile。完整機器可讀 schema(參數、認證、回應封裝)見 OpenAPI spec。