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.


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

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": "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.5
  • anthropic/claude-opus-5
  • google/gemini-3.5-flash

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.