AI agent?先讀 /llms.txt 取得全站索引。
總體經濟
外銷訂單金額(按貨品別):經濟部統計處官方月統計,每筆為某貨品別某月之外銷訂單金額(美元),欄位逐一誠實對映來源 CSV,機器攜帶出處(政府資料開放授權 OGDL v1 ⇄ CC BY 4.0)。非預測、非建議。
GET /v2/datasets/export-orders-monthly外銷訂單金額(按貨品別)是台灣市場資料集,來源為 MOEA,由 TW Market Data 以 GET /v2/datasets/export-orders-monthly 提供,資料日 2026-06-01。
| 欄位 | 型別 | 說明 |
|---|---|---|
period_month | string | |
stat_item | string | 統計項目 |
item_code | string | 貨品別 |
item_name | string | 繁中 label |
value | number | 百萬美元 (USD mn) |
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": "export_orders_monthly",
"request_context": {
"scope": "tw_export_orders_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-01-01",
"max_period_month": "2026-06-01"
},
"quality": {
"row_count": 50,
"item_count": 9,
"months_in_page": 6,
"sensitive_fields_exposed": false
},
"lineage": {
"source_providers": [
"moea_dos"
],
"attributions": [
"經濟部統計處"
],
"licenses": [
"OGDL_v1_ccby40"
],
"semantics": "Ministry of Economic Affairs export orders by category, monthly from 1984-01.",
"shared_table_note": "tw_govt_stats_monthly_items backs three datasets; this response is filtered to dataset_key='export_orders_monthly'."
},
"error": null,
"data": [
{
"period_month": "2026-06-01",
"stat_item": "外銷訂單金額_美元",
"item_code": "光學器材",
"item_name": "光學器材",
"value": 1940,
"unit": "百萬美元",
"attribution": "經濟部統計處",
"license": "OGDL_v1_ccby40",
"source_provider": "moea_dos",
"source_role": "official_moea_export_orders",
"source_url": "https://service.moea.gov.tw/EE520/opendata/經濟部統計處_外銷訂單_光學器材.csv",
"release_date": null
},
{
"period_month": "2026-06-01",
"stat_item": "外銷訂單金額_美元",
"item_code": "化學品",
"item_name": "化學品",
"value": 1507,
"unit": "百萬美元",
"attribution": "經濟部統計處",
"license": "OGDL_v1_ccby40",
"source_provider": "moea_dos",
"source_role": "official_moea_export_orders",
"source_url": "https://service.moea.gov.tw/EE520/opendata/經濟部統計處_外銷訂單_化學品.csv",
"release_date": null
}
],
"data_count": 50,
"known_gaps": [
"export_ORDERS_are_not_shipments_an_order_may_never_convert",
"official_statistics_are_REVISED_a_recent_month_can_change_after_first_publication",
"published_with_a_lag_of_roughly_one_month"
],
"warnings": [
"not_investment_advice"
],
"envelope": {
"dataset_id": "export_orders_monthly",
"scope": "tw_export_orders_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/export-orders-monthly
版本取自資料集自己的 as_of,不是這一頁的產生日期。沒有 as_of 的資料集就不列這個欄位,不會補一個看起來合理的值。 驗證簽章
可與本資料集對齊的其他資料集。每組都標出可用來 join 的欄位,規劃跨表查詢時不必自己猜。
可用 period_month 對齊
可用 period_month 對齊
同分類:macro
同分類:macro
同分類:macro
curl "https://api.twmarketdata.com/v2/datasets/export-orders-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/export-orders-monthly",
params={},
headers={"X-API-Key": "sk_live_..."},
)
resp.raise_for_status()
print(resp.json()["data"])此端點為 GET /v2/datasets/export-orders-monthly。完整機器可讀 schema(參數、認證、回應封裝)見 OpenAPI spec。