Launching Soon

One API Key,
Every Korean API

Call any data your AI agent needs through one gateway. ApiFuse routes, authenticates, and normalizes public and private Korean APIs into a standard JSON response.

Live now Scaling toward a 500-API ecosystem MCP Support OpenAPI 3.1

16

Korean APIs Live

102 operations, one key

1-Click

OAuth Connection

102

Callable operations

1 Line

Lines to Start

✦ INTEGRATIONS ✦

From Government to Big Tech, One Interface for All

From the Korean APIs callable today to the lineup coming soon — all reachable from one interface, no separate keys, no separate sign-ups.

Government
KMA WeatherAirKoreaKorean LawDelivery Tracking
Booking · Travel
CatchTableTriple
Big Tech · Platforms
Kakao MapNaver Map
Coming Soon
Public Data PortalMinistry of LandSeoul Open DataMinistry of EnvironmentDARTBank of KoreaKorea InvestmentSK Open APIKT API
✦ PROBLEM ✦

API integrations were built for humans

We live in an age where agents drive the world — but API key issuance and integration still require human hands. Agents can't wait.

Key Management Nightmare

Sign up for each service, issue keys, manage env variables... Connect just 10 APIs and your .env file explodes.

OPENWEATHER_KEY=abc123...
KAKAO_API_KEY=xyz789...
NAVER_CLIENT_ID=a1b2c3...
NAVER_CLIENT_SECRET=d4e5f6...
UPBIT_ACCESS_KEY=g7h8i9...
KMA_SERVICE_KEY=j0k1l2...

Format Fragmentation

Different response structures per API, constant re-parsing... Change one weather API and you have to rewrite everything.

// KMA API response
{ "response": { "body": { "items":
  { "item": [{ "fcstValue": "12" }] }}}

// OpenWeather response
{ "main": { "temp": 285.15 },
  "weather": [{ "main": "Clear" }] }

Hidden Costs

Multiple dashboards, separate payments, no usage visibility... Nobody knows this month's actual API costs.

📊 OpenWeather  ····· $29/mo
📊 Kakao Maps   ····· ₩15,000/mo
📊 Naver Search ····· ₩25,000/mo
📊 Public Data  ····· Free(limited)
📊 Upbit        ····· Free(limited)
─────────────────────
💸 Total: ???
✦ SOLUTION ✦

Now agents connect directly

ApiFuse abstracts away the entire API layer. Every piece of data your agent needs — reachable instantly, without auth, parsing, or CORS.

ItemTraditionalFusepıe
API ConnectionIssue keys per service1-Click OAuth
Response FormatAll differentStandardized JSON
BillingMultiple placesIn one place
Integration CodeHundreds of lines1 line
API ChangesManual fixAuto-handled
Error HandlingBuild yourselfStandard error envelope
UpdatesManualAutomatic
StandardizationNoneOpenAPI 3.1
✦ HOW IT WORKS ✦

Done in 3 steps

1

Call an Operation

Choose a provider operation and send structured input through the Gateway.

POST/v1/kma-forecast/short-forecast { gridX: 60, gridY: 127 }
2

Auto Matching

ApiFuse picks the right operation and handles auth and routing for you. OAuth-backed APIs take one "Connect" click the first time — after that, calls are automatic.

Intent candidate search
Searching the Korean API lineup
✓ KMA Short-term Forecast selected
3

Unified Response

Every API returns the same standard JSON shape, no matter which provider answered. No more rewriting parsers.

{
  "source": "KMA API",
  "data": {
    "city": "Seoul",
    "temp": 12,
    "condition": "Clear"
  },
  "latency": "124ms"
}
✦ ARCHITECTURE ✦

What happens under the hood?

Your agent's request flows through the ApiFuse Gateway and reaches the Korean API ecosystem.

Request → Response Pipeline
Client
AI Agent
STEP 1
Intent Router
Semantic analysis · Candidate matching
STEP 2
Gateway
Auth · Auto routing
STEP 3
Provider Pod
Isolated pod · Secure proxy
STEP 4
Response
Standard JSON · OpenAPI 3.1
API Pool
102 ops
Live
Routing Latency
102
Integrated APIs
Proxy
CORS Resolved
✦ FEATURES ✦

The Complete API Layer for AI Agents

Tool Routing

Core

Expose provider operations through one Gateway and MCP-compatible tool layer.

Provider execution · Gateway /v1 + /mcp

A Single API Key

Start

One ApiFuse API key unlocks every Korean API. OAuth-backed APIs only take one "Connect" click the first time — ApiFuse manages keys after that.

1 API key · Auto auth handling

Korean APIs That Matter

Live

Government, big tech, booking and travel — Korea's essential APIs unified behind one interface. Which Korean service you need is no longer the variable that determines integration cost.

Government · Big Tech · Booking · Travel

MCP Server

AI

Model Context Protocol compatible. Connect directly from Claude Desktop, Cursor, and other MCP clients to call Korean APIs as tools.

/api/mcp — JSON-RPC 2.0 over HTTP

Auto OpenAPI Generation

Dev

Auto-generates OpenAPI 3.1 specs for all integrated APIs. Instantly compatible with Swagger UI, Postman, and more.

/api/[id]/openapi endpoint auto-provided

Server-side Proxy

Security

Every API call goes through a server-side proxy. Call from the browser safely without CORS issues and try operations directly in the Playground.

Browser-direct testing · Built-in Playground
✦ USE CASES ✦

Ready for these use cases

AI Agent Development

Give ChatGPT, Claude, and other LLM agents access to Korean APIs. No key management — one line of natural language handles weather, directions, restaurant bookings, and legal lookup.

"What's the weather in Seoul?" → Auto KMA API call

Rapid Prototyping

Stop spending hackathon, MVP, and side-project time on Korean API integration. Focus on the idea — leave the APIs to ApiFuse.

1 API key → Start building immediately

MCP-based Agents

Plug into any Model Context Protocol-compatible framework. No tool definitions needed — Korean APIs become your agent's tools.

Claude Desktop → MCP server connect → Ready to use
✦ EARLY ACCESS ✦

Available to call right now

Live and callable

Korean APIs spanning government, big tech, and booking categories are callable right now.

Toward a 500-API ecosystem

We're building toward a 500-Korean-API ecosystem, shipping new APIs every week. Only APIs with health checks and OpenAPI docs ready make it into the official lineup.

Beta Feedback Welcome

Early user feedback shapes our product direction. Tell us which APIs you need.

✦ FAQ ✦

Frequently Asked Questions

✦ GET STARTED ✦

"A world connected to every Korean API starts now."

Get started in 1 minute

One API key, standard JSON responses. Open a terminal and paste a single line.

Terminal
# 1-minute start — copy & paste
$ curl -X POST "https://api.apifuse.ai/v1/kma-forecast/short-forecast" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"stationName":"동작구","dataTerm":"DAILY"}'