Last updated
The Exchange API is Kumbaya's hosted backend for trading-side data. It powers the Kumbaya frontend and is also available to integrators.
Base URL
https://exchange.kumbaya.xyz
OpenAPI / Swagger
Auth
Mix of public, partner-keyed, and rate-limited (per route)
Building an LLM agent? These endpoints are also available as MCP tools - 29 of them under the
dex_prefix. See the MCP Server, part of the Kumbaya Agent Kit.
See Authentication for the auth model. The short version:
Public, no auth - health, status, pools, tokens, stats, and user-position endpoints
Partner key required - every quote endpoint: GET /api/v1/quote, POST /api/v1/quote, POST /api/v1/quote/open, and GET /api/v1/quote/tokens. Without an x-api-key they return 401 { "error": "Invalid API key" }. Request a key from the Kumbaya team.
The Swagger UI at /docs is the source of truth for current parameters and response shapes. These docs link to it for anything we don't re-document here.
Last updated