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

公司與事件

法人說明會行事曆

法人說明會行事曆

已驗證來源: MOPS·方案: free·計費: 1 ·GET /v2/datasets/investor-conference-calendar

法人說明會行事曆是台灣市場資料集,來源為 MOPS,由 TW Market Data 以 GET /v2/datasets/investor-conference-calendar 提供。

總覽

法人說明會行事曆——每列粒度:ticker / market / conference_date。

欄位型別說明
tickerstring
company_namestring
marketstringTWSE / TPEx
conference_datestring事實發生日——法說會舉行日,依定義為未來日
announcement_datestring發言日期——揭露日,這才是 point-in-time 軸
event_titlestring
event_subjectstring
date_semanticsstring

範例回應

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

{  "dataset_id": "investor_conference_calendar",  "request_context": {    "scope": "tw_investor_conference_calendar",    "coverage_type": "event_calendar",    "filters": {      "ticker": "6277",      "date_from": null,      "date_to": null,      "upcoming_only": false,      "limit": 50    },    "min_conference_date": "2026-08-11",    "max_conference_date": "2026-08-11"  },  "quality": {    "row_count": 1,    "upcoming_count": 1,    "latest_announcement_date": "2026-08-04",    "sensitive_fields_exposed": false  },  "lineage": {    "sources": [      "MOPS Investor Conference Listed"    ],    "authorities": [      "TWSE MOPS Open Data"    ],    "semantics": "Scheduled investor conferences (法人說明會), keyword-filtered from the official MOPS t187ap04_L open data. conference_date is a FUTURE date by construction, so judge this dataset's freshness by latest_announcement_date, not by how far the newest conference_date is from today."  },  "error": null,  "data": [    {      "ticker": "6277",      "company_name": "宏正",      "market": "TWSE",      "conference_date": "2026-08-11",      "announcement_date": "2026-08-04",      "event_title": "公告本公司115年08月11日召開線上法人說明會",      "event_subject": "公告本公司115年08月11日召開線上法人說明會",      "source_name": "MOPS Investor Conference Listed",      "source_url": "https://mopsfin.twse.com.tw/opendata/t187ap04_L.csv",      "source_authority": "TWSE MOPS Open Data",      "event_version": "investor_conference_calendar_v1",      "date_semantics": "forward_only_official_mops_keyword_filter"    }  ],  "data_count": 1,  "known_gaps": [    "thin_dataset_thirteen_events_not_comprehensive_conference_coverage",    "keyword_filtered_from_official_mops_t187ap04_l_not_an_exhaustive_event_feed",    "conference_date_is_forward_looking_freshness_is_refresh_recency_not_period_distance"  ],  "warnings": [    "not_investment_advice"  ],  "envelope": {    "dataset_id": "investor_conference_calendar",    "scope": "tw_investor_conference_calendar",    "row_count": 1  }}

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

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

出處

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

source_namesource_urlsource_authorityevent_version

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

快速開始

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

篩選參數

參數必填型別說明
symbolstring股票代碼,例如 2330。
start_datestring (YYYY-MM-DD)查詢起始日期。
end_datestring (YYYY-MM-DD)查詢結束日期。
limitinteger回傳筆數上限。

Python 範例

第一個呼叫:

import requests resp = requests.get(    "https://api.twmarketdata.com/v2/datasets/investor-conference-calendar",    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/investor-conference-calendar",    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/investor-conference-calendar。完整機器可讀 schema(參數、認證、回應封裝)見 OpenAPI spec

備註與限制

  • 依定義為前瞻資料:conference_date 是未來日期,它與今天的距離不是新鮮度,announcement_date 才是新鮮度軸。涵蓋:每交易日輪詢,儲存序列自 2026-06 起,且僅能取到 MOPS 滾動視窗,故在該視窗之前公告並舉行的法說會不在其中。