Korea's public data, developer-friendly. No more XML. No more Korean-only docs.
data.go.kr has 70,000+ datasets but terrible DX — XML responses, Korean documentation, complex authentication. We fixed that.
<response>
<header>
<resultCode>00</resultCode>
<resultMsg>NORMAL SERVICE.</resultMsg>
</header>
<body>
<items>
<item>
<cur_unit>USD</cur_unit>
<deal_bas_r>1,380.5</deal_bas_r>
<cur_nm>미 달러</cur_nm>
</item>
</items>
</body>
</response>
{
"success": true,
"baseCurrency": "KRW",
"data": [
{
"currency": "USD",
"currencyName": "US Dollar",
"rate": 1380.5,
"unit": 1
}
]
}
No more XML parsing. Every response is structured JSON with consistent error handling.
All field names in English. Korean names included as secondary fields for localization.
Built-in MCP endpoint so AI agents can query Korean government data natively.
No API key needed for basic access. No data.go.kr registration. Just call the endpoint.
Sourced from Bank of Korea, KOSIS, Statistics Korea, Korea Post. Authoritative numbers.
Deployed on Cloudflare Workers. Sub-10ms responses from 300+ global locations.
Add to your Claude Desktop or AI agent config:
{
"mcpServers": {
"govdata-korea": {
"type": "url",
"url": "https://api.lazy-mac.com/govdata-korea/mcp"
}
}
}