財務與分析
月營收
提供台股公司每月營收資料,適合用於營運趨勢追蹤與高頻基本面分析。
GET
/v2/datasets/monthly-revenueOverview#
月營收 API 提供公司每月營運表現的關鍵數據,是台股市場中最常用的高頻基本面資料之一。
這類資料的特性包括:
- 更新頻率高(每月)
- 可快速反映營運變化
- 常用於提前觀察趨勢
- 與其他資料的差異:
- 財報資料:低頻(季度 / 年度),但完整
- 月營收:高頻,但較單一指標
- 財報指標:已計算分析結果
- 觀察營收成長趨勢
- 提前判斷基本面變化
- 建立營收動能策略
- 與價格資料對照短期反應
- 作為量化模型中的輸入特徵
Request#
使用此 endpoint 時,建議:
Query Parameters#
| 欄位 | 型別 | Required | 說明 |
|---|---|---|---|
| symbol | string | yes | 股票代碼(內部對應 ticker)。 |
| start_date | string | no | 查詢起始日期(YYYY-MM-DD)。 |
| end_date | string | no | 查詢結束日期(YYYY-MM-DD)。 |
| limit | integer | no | 回傳筆數(建議用於控制月份數)。 |
Response Shape#
回應結構固定為 dataset、rows、count。
{
"dataset": "monthly_revenue",
"rows": [
{
"symbol": "2330",
"revenue_month": "2026-03",
"revenue": 210000000000,
"revenue_yoy": 0.18,
"revenue_mom": 0.05
}
],
"count": 1
}Field 說明#
| 欄位路徑 | 型別 | 說明 |
|---|---|---|
| rows[].symbol | string | 股票代碼。 |
| rows[].revenue_month | string | 營收月份(例如 2026-03)。 |
| rows[].revenue | number | 當月營收。 |
| rows[].revenue_yoy | number|null | 年增率(若目前 schema 有)。 |
| rows[].revenue_mom | number|null | 月增率(若目前 schema 有)。 |
| count | integer | 回傳資料筆數。 |
Usage Notes / 使用建議#
- 使用 symbol + revenue_month 作為識別。
- 若要分析成長,應搭配 yoy / mom。
- 若要做策略,建議與價格資料整合。
- 若需要完整財務結構,應搭配財報資料。
- 若做 ranking,可直接用 revenue 或 growth 指標。
Plan Requirement#
- Free(限制)
- Developer
- Pro
- Enterprise