Open Government, Taiwan
Metadata for Taiwan's national open-data catalog, keyless
Taiwan's government open-data portal offers a keyless REST API returning JSON metadata for each published dataset, including title, provider, license and update cadence. Fetch a dataset by its numeric id to see how the catalog describes it. Useful for indexing or exploring what Taiwanese agencies have released.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://data.gov.tw/api/v2/rest/dataset/6041
{
"help": "",
"success": true,
"result": {
"categoryDataset": "A",
"datasetId": 6041,
"identifier": "A45000000D-000002",
"title": "金融機構基本資料查詢",
"type": "rawData",
"cost": "free",
"license": "1"
}
}curl "https://data.gov.tw/api/v2/rest/dataset/6041"const res = await fetch("https://data.gov.tw/api/v2/rest/dataset/6041");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://data.gov.tw/api/v2/rest/dataset/6041")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/rest/dataset/6041PROBEDMetadata for Taiwan's national open-data catalog, keyless
/rest/datasetDataset — documented GET route.
/rest/dataset/1Dataset details by ID (example: 1).
/restRest — documented GET route.
/rest/1Rest details by ID (example: 1).
/rest?limit=10Rest — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
Open Government, Taiwan: common questions
Is Open Government, Taiwan free to use?
Yes — Open Government, Taiwan is a free government API. Free tier: Free — no API key required; limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Open Government, Taiwan need an API key?
No — Open Government, Taiwan needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Open Government, Taiwan from the browser?
Not directly — Open Government, Taiwan doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Open Government, Taiwan up right now?
Open Government, Taiwan is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.