AI agent?先讀 /llms.txt 取得全站索引。

基金與企業情報

轉投資/子公司

轉投資/子公司

參考來源: MOPS·方案: developer·計費: 2 ·GET /v2/datasets/subsidiary-investment

轉投資/子公司是台灣市場資料集,來源為 MOPS,由 TW Market Data 以 GET /v2/datasets/subsidiary-investment 提供。

總覽

轉投資/子公司——每列粒度:parent_ticker / invested_entity。

欄位型別說明
parent_tickerstring
invested_entity_namestring
main_businessstring
regionstring
criterionstring
fact_datestring
holding_pctnull持股%
marketstring
pit_safe_fromnull

範例回應

此為本端點的真實回應。資料列位於 "data" 之下,來源資訊如下方所示;各資料集形狀不盡相同,請以本頁為準。

{  "dataset_id": "subsidiary_investment",  "request_context": {    "scope": "listed_parent_direct_investments",    "coverage_type": "versioned_snapshot",    "filters": {      "parent_ticker": null,      "region": null,      "as_of": null,      "limit": 50    },    "min_fact_date": "2006-04-28",    "max_fact_date": "2026-03-20"  },  "quality": {    "row_count": 50,    "parent_count": 14,    "rows_without_holding_pct": 50,    "rows_without_pit_safe_from": 50,    "sensitive_fields_exposed": false  },  "lineage": {    "source_providers": [      "mops_official"    ],    "semantics": "Entities a listed parent reports investing in, with the holding percentage where filed. Returns the CURRENT version per (parent_ticker, invested_entity_name); pass as_of for an earlier one."  },  "error": null,  "data": [    {      "parent_ticker": "1101",      "invested_entity_name": "OYAK Cimento Fabrikalari A.S.",      "main_business": "製造及分銷熟料、水泥",      "region": "TURKEY/土耳其",      "criterion": "1",      "fact_date": "2026-03-12",      "holding_pct": null,      "market": "TW",      "source_provider": "mops_official",      "source_role": "official_mops_t79sb02",      "source_authority": "MOPS 公開資訊觀測站 重要子公司資訊 (t79sb02)",      "pit_safe_from": null    },    {      "parent_ticker": "1101",      "invested_entity_name": "TCC Dutch Holdings B.V.",      "main_business": "投資控股",      "region": "NETHERLANDS/荷蘭",      "criterion": "1",      "fact_date": "2025-03-12",      "holding_pct": null,      "market": "TW",      "source_provider": "mops_official",      "source_role": "official_mops_t79sb02",      "source_authority": "MOPS 公開資訊觀測站 重要子公司資訊 (t79sb02)",      "pit_safe_from": null    }  ],  "data_count": 50,  "known_gaps": [    "fact_date_is_the_snapshot_we_observed_not_the_date_the_holding_changed",    "pit_safe_from_null_means_the_version_boundary_is_an_ingest_date_not_a_disclosure_date",    "holding_pct_may_be_null_where_the_filing_stated_no_percentage"  ],  "warnings": [    "not_investment_advice"  ],  "envelope": {    "dataset_id": "subsidiary_investment",    "scope": "listed_parent_direct_investments",    "row_count": 50  }}

擷取自 2026-07-20 的線上 API。

本頁顯示原始中文值;英文頁會以標記取代,以維持全英文。

出處

以下欄位會隨資料一併回傳,記錄這一列的來源。它們屬於出處而非本資料集要講的事實,因此列在這裡而不進欄位表。

source_providersource_rolesource_authority

可與本資料集對齊的其他資料集。每組都標出可用來 join 的欄位,規劃跨表查詢時不必自己猜。

快速開始

  1. 把你的金鑰放進 X-API-Key 標頭。
  2. 加上查詢參數(symbol、日期區間、limit)。
  3. 送出請求並讀取 data 陣列。
curl "https://api.twmarketdata.com/v2/datasets/subsidiary-investment?symbol=2330" \  -H "X-API-Key: sk_live_..."

篩選參數

參數必填型別說明
symbolstring以股票代碼篩選單一標的。
limitinteger回傳筆數上限。

Python 範例

第一個呼叫:

import requests resp = requests.get(    "https://api.twmarketdata.com/v2/datasets/subsidiary-investment",    params={"symbol": "2330"},    headers={"X-API-Key": "sk_live_..."},)resp.raise_for_status()print(resp.json()["data"])

帶日期區間篩選:

import requests # The full verified example — the same call with every supported filter set.resp = requests.get(    "https://api.twmarketdata.com/v2/datasets/subsidiary-investment",    params={"symbol": "2330"},    headers={"X-API-Key": "sk_live_..."},)resp.raise_for_status()for row in resp.json()["data"]:    print(row)

OpenAPI

此端點為 GET /v2/datasets/subsidiary-investment。完整機器可讀 schema(參數、認證、回應封裝)見 OpenAPI spec

備註與限制

  • period_semantics=entity_attribute:每家公司一筆的季更屬性,非日序觀測。fact date 表示所屬期別而非揭露日,回測需另行對齊公告日。