Mume AIMume AI
DocsModelsPricingChat
OverviewChat CompletionsResponses APIStreamingFunction CallingWeb SearchMCP ServersModelsError HandlingAuthentication

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

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/v1 and you're ready to go.

Installation

Python

Bash
pip install openai

JavaScript / Node.js

Bash
npm install openai

Configuration

Python

Python
import openai client = openai.OpenAI( api_key="your-api-key", base_url="https://mume.ai/api/v1", )

JavaScript

JavaScript
import OpenAI from "openai"; const client = new OpenAI({ apiKey: "your-api-key", baseURL: "https://mume.ai/api/v1", });

cURL

Bash
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": "openai/gpt-4.1-mini", "messages": [{"role": "user", "content": "Hello!"}] }'

Model Format

All models use the provider/model-name format. For example:

  • openai/gpt-4.1-mini
  • anthropic/claude-opus-4.5
  • google/gemini-3-pro-preview

Explore the full catalog on the Models page.


API Base URL

Endpoint
https://mume.ai/api/v1

Need an API Key?

Generate your API key at mume.ai/dashboard/keys. See the Authentication guide for setup instructions.