AI agent?先讀 /llms.txt 取得全站索引。
總體經濟
製造業生產價值指數:經濟部統計處官方月統計,每筆為某行業某月之生產價值指數。欄位逐一誠實對映來源 CSV,機器攜帶出處(OGDL v1)。非預測、非建議。
GET /v2/datasets/production-value-index-monthly製造業生產價值指數是台灣市場資料集,來源為 MOEA,由 TW Market Data 以 GET /v2/datasets/production-value-index-monthly 提供,資料日 2026-06-01。
| 欄位 | 型別 | 說明 |
|---|---|---|
period_month | string | |
stat_item | string | 統計項目 |
item_code | string | 行業代碼 |
item_name | string | 繁中 label |
value | number | 指數 (110年=100) |
unit | string | |
attribution | string | 機關全名 (first-class) |
license | string | |
release_date | null |
| 列數 | 22,398 |
| 涵蓋起訖 | 1982-01-01 – 2026-07-01 |
| 分級 | 已驗證 |
| 量測時間 | 2026-09-01取自資料集登錄表 |
此為本端點的真實回應。資料列位於 "data" 之下,來源資訊如下方所示;各資料集形狀不盡相同,請以本頁為準。
{
"dataset_id": "production_value_index_monthly",
"request_context": {
"scope": "tw_industrial_production_value_index_monthly",
"coverage_type": "monthly_official_statistics",
"filters": {
"item_code": null,
"period_month": null,
"date_from": null,
"date_to": null,
"limit": 50
},
"min_period_month": "2026-04-01",
"max_period_month": "2026-05-01"
},
"quality": {
"row_count": 50,
"item_count": 32,
"months_in_page": 2,
"sensitive_fields_exposed": false
},
"lineage": {
"source_providers": [
"moea_dos"
],
"attributions": [
"經濟部統計處"
],
"licenses": [
"OGDL_v1_ccby40"
],
"semantics": "Ministry of Economic Affairs industrial production / value index by item, monthly from 1982-01.",
"shared_table_note": "tw_govt_stats_monthly_items backs three datasets; this response is filtered to dataset_key='production_value_index_monthly'."
},
"error": null,
"data": [
{
"period_month": "2026-05-01",
"stat_item": "生產價值指數",
"item_code": "08",
"item_name": "食品及飼品製造業",
"value": 107.68,
"unit": "110年=100",
"attribution": "經濟部統計處",
"license": "OGDL_v1_ccby40",
"source_provider": "moea_dos",
"source_role": "official_moea_production_index",
"source_url": "https://service.moea.gov.tw/EE520/opendata/經濟部統計處_製造業生產價值指數.csv",
"release_date": null
},
{
"period_month": "2026-05-01",
"stat_item": "生產價值指數",
"item_code": "09",
"item_name": "飲料製造業",
"value": 104.18,
"unit": "110年=100",
"attribution": "經濟部統計處",
"license": "OGDL_v1_ccby40",
"source_provider": "moea_dos",
"source_role": "official_moea_production_index",
"source_url": "https://service.moea.gov.tw/EE520/opendata/經濟部統計處_製造業生產價值指數.csv",
"release_date": null
}
],
"data_count": 50,
"known_gaps": [
"official_statistics_are_REVISED_a_recent_month_can_change_after_first_publication",
"index_base_year_changes_over_a_44_year_series_compare_within_a_base_not_across",
"published_with_a_lag_of_roughly_one_to_two_months"
],
"warnings": [
"not_investment_advice"
],
"envelope": {
"dataset_id": "production_value_index_monthly",
"scope": "tw_industrial_production_value_index_monthly",
"row_count": 50
}
}擷取自 2026-07-20 的線上 API。
本頁顯示原始中文值;英文頁會以標記取代,以維持全英文。
以下欄位會隨資料一併回傳,記錄這一列的來源。它們屬於出處而非本資料集要講的事實,因此列在這裡而不進欄位表。
source_providersource_rolesource_url資料來源:經濟部統計處
TW Market Data. (2026). 製造業生產價值指數 (Version 2026-06-01) [Data set]. TW Market Data. Retrieved 2026-09-05, from https://twmarketdata.com/zh-TW/docs/api/macro/production-value-index-monthly
版本取自資料集自己的 as_of,不是這一頁的產生日期。沒有 as_of 的資料集就不列這個欄位,不會補一個看起來合理的值。 驗證簽章
可與本資料集對齊的其他資料集。每組都標出可用來 join 的欄位,規劃跨表查詢時不必自己猜。
可用 period_month 對齊
可用 period_month 對齊
同分類:macro
同分類:macro
同分類:macro
curl "https://api.twmarketdata.com/v2/datasets/production-value-index-monthly" \
-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/production-value-index-monthly",
params={},
headers={"X-API-Key": "sk_live_..."},
)
resp.raise_for_status()
print(resp.json()["data"])此端點為 GET /v2/datasets/production-value-index-monthly。完整機器可讀 schema(參數、認證、回應封裝)見 OpenAPI spec。