Mume Gateway API
Your unified gateway to the world's most powerful AI models. A single, OpenAI-compatible API to access models from OpenAI, Anthropic, Google, Mistral, and more.
Chat Completions
Multi-turn conversations with any model
Responses API
Streamlined single-turn interactions
Streaming
Real-time token-by-token output
Function Calling
Extend AI with custom tools
Web Search
Built-in real-time web search
Images & Video
Generate images and video from one API
Speech & Transcription
Text to audio, and audio back to text
Embeddings & Reranking
Both halves of a retrieval pipeline
Moderation
Classify text before you act on it
Agent Runs
Runs that call tools and outlive the request
Schedules
Run an agent on a cadence, not on a request
Models
The catalog as an API — public, and cacheable
Credits, Usage & Status
Balance, spend and health, from an API key
Authentication
API keys and environment setup
Quick Start
The Mume Gateway is fully compatible with the OpenAI SDK. Just change the base URL to https://mume.ai/api/v1and you're ready to go.
Installation
Python
pip install openaiJavaScript / Node.js
npm install openaiConfiguration
Python
import openai
client = openai.OpenAI(
api_key="your-api-key",
base_url="https://mume.ai/api/v1",
)JavaScript
import OpenAI from "openai";
const client = new OpenAI({
apiKey: "your-api-key",
baseURL: "https://mume.ai/api/v1",
});cURL
export MUME_API_KEY="your-api-key"
curl https://mume.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $MUME_API_KEY" \
-d '{
"model": "anthropic/claude-haiku-4.5",
"messages": [{"role": "user", "content": "Hello!"}]
}'Model Format
All models use the provider/model-name format. For example:
anthropic/claude-haiku-4.5anthropic/claude-opus-5google/gemini-3.5-flash
Explore the full catalog on the Models page.
API Base URL
https://mume.ai/api/v1Need an API Key?
Generate your API key at mume.ai/dashboard/keys. See the Authentication guide for setup instructions.