APIFuse

APIFuse Docs

Learn how to call provider operations through APIFuse.

APIFuse Docs

APIFuse gives teams one consistent way to discover and call provider APIs. Use the API reference to choose a provider and operation, then send a request to the gateway with your APIFuse API key.

Start with an operation

Open the API reference, select a provider, and review the operation schema. Gateway calls use this route format:

POST /v1/{providerId}/{operationId}

For example:

curl -X POST https://api.apifuse.com/v1/kakaomap/search \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"Seoul Station"}'