Building an AI agent? Start with /llms.txt for the full site index.
Financials & Growth
Monthly revenue disclosures for listed companies, sourced from MOPS, with year-over-year and month-over-month growth ready to compute.
GET /v2/datasets/monthly-revenueMonthly revenue is a Taiwan market dataset sourced from MOPS, served by TW Market Data as GET /v2/datasets/monthly-revenue.
monthly-revenue returns one row per company per reporting month from MOPS. The lineage block names the exact MOPS form the figure came from, so each number is auditable rather than opaque.
| Field | Type | Description |
|---|---|---|
symbol | string | Ticker. |
month | string | |
revenue_month | string | |
revenue | string | Monthly revenue (TWD thousands). |
yoy | null | |
mom | null | |
announcement_date | null | |
source_publish_date | null | |
currency | string | |
source_id | string |
| Rows | ~335,228 |
| Window | 2010-01 – 2026-07 |
| Grade | Verified |
| Measured | 2026-09-01from the dataset registry |
A real response from this endpoint. Rows are returned under "rows", and provenance is carried in the shape shown below — it is not identical across datasets, so read this page's rather than assuming another's.
{
"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
}Captured from the live API on 2026-07-20.
Part of the data in this service is obtained from the Government Open Data Platform (data.gov.tw) and used under the Open Government Data License, version 1.0. Providing agencies: Taiwan Stock Exchange, Taipei Exchange, Taiwan Futures Exchange, Taiwan Depository & Clearing Corporation, National Development Council, Central Bank of the Republic of China (Taiwan), Department of Statistics of the Ministry of Economic Affairs, and Customs Administration of the Ministry of Finance. The value-added processing, derived calculations and presentation in this service are the responsibility of TWMD and are not associated with the providing agencies.
TW Market Data. (n.d.). Monthly revenue [Data set]. TW Market Data. Retrieved 2026-09-05, from https://twmarketdata.com/en/docs/api/financials/monthly-revenue
The version is the dataset's own as_of, not the date this page was built. Where we have no as_of the field is left out rather than filled in. Check a signature
Datasets that join with this one. The key each pair aligns on is shown, so you can plan a multi-table query without guessing.
Joins on ticker
Joins on ticker
Joins on ticker
Joins on ticker
Joins on ticker
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_..."| Parameter | Required | Type | Description |
|---|---|---|---|
symbol | Yes | string | Ticker, e.g. 2330. |
start_date | No | string | Start of the query range (YYYY-MM-DD). |
end_date | No | string | End of the query range (YYYY-MM-DD). |
limit | No | integer | Maximum rows to return. |
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"])This endpoint is GET /v2/datasets/monthly-revenue. The full machine-readable schema (parameters, security, response envelope) lives in the OpenAPI spec.