AI agent?先讀 /llms.txt 取得全站索引。
財務與成長
上市櫃公司月營收申報,來源為公開資訊觀測站(MOPS),可直接計算 YoY/MoM 成長。
GET /v2/datasets/monthly-revenue月營收是台灣市場資料集,來源為 MOPS,由 TW Market Data 以 GET /v2/datasets/monthly-revenue 提供。
monthly-revenue 以 MOPS 為源,每家公司每個申報月份回傳一列;lineage 欄位標明數字來自哪一份 MOPS 表單,數值可稽核而非黑箱。
| 欄位 | 型別 | 說明 |
|---|---|---|
symbol | string | 股票代碼。 |
month | string | |
revenue_month | string | |
revenue | string | 月營收(新台幣仟元)。 |
yoy | null | |
mom | null | |
announcement_date | null | |
source_publish_date | null | |
currency | string | |
source_id | string |
| 列數 | 約 335,228 |
| 涵蓋起訖 | 2010-01 – 2026-07 |
| 分級 | 已驗證 |
| 量測時間 | 2026-09-01取自資料集登錄表 |
此為本端點的真實回應。資料列位於 "rows" 之下,來源資訊如下方所示;各資料集形狀不盡相同,請以本頁為準。
{
"dataset": "monthly_revenue",
"rows": [
{
"symbol": "1101",
"month": "2026-06",
"revenue_month": "2026-06",
"revenue": "13382706.000000",
"yoy": null,
"mom": null,
"announcement_date": null,
"source_publish_date": null,
"currency": "TWD",
"source_id": "monthly_revenue_enhanced_items"
},
{
"symbol": "1101",
"month": "2026-05",
"revenue_month": "2026-05",
"revenue": "12612013.000000",
"yoy": "-0.059300",
"mom": "3.265500",
"announcement_date": null,
"source_publish_date": null,
"currency": "TWD",
"source_id": "monthly_revenue_enhanced_items"
}
],
"count": 50
}擷取自 2026-07-20 的線上 API。
本服務部分資料取自政府資料開放平臺(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/financials/monthly-revenue
版本取自資料集自己的 as_of,不是這一頁的產生日期。沒有 as_of 的資料集就不列這個欄位,不會補一個看起來合理的值。 驗證簽章
可與本資料集對齊的其他資料集。每組都標出可用來 join 的欄位,規劃跨表查詢時不必自己猜。
curl "https://api.twmarketdata.com/v2/datasets/monthly-revenue?symbol=2330&start_date=2026-06-01&end_date=2026-07-15&limit=5" \
-H "X-API-Key: sk_live_..."| 參數 | 必填 | 型別 | 說明 |
|---|---|---|---|
symbol | 是 | string | 股票代碼,例如 2330。 |
start_date | 否 | string | 查詢起始日期(YYYY-MM-DD)。 |
end_date | 否 | string | 查詢結束日期(YYYY-MM-DD)。 |
limit | 否 | integer | 回傳筆數上限。 |
import requests
resp = requests.get(
"https://api.twmarketdata.com/v2/datasets/monthly-revenue",
params={"symbol": "2330", "limit": "5"},
headers={"X-API-Key": "sk_live_..."},
)
resp.raise_for_status()
print(resp.json()["rows"])此端點為 GET /v2/datasets/monthly-revenue。完整機器可讀 schema(參數、認證、回應封裝)見 OpenAPI spec。