MoleAPI
One AI gateway,one clear docs path
Start with API keys and Base URL, then move into app integrations, CLI setup, deployment workflows, and the full API reference.
Get a minimal working integration in three steps
If all you need is the fastest path to a successful request, start with these three pages.
Create a key in the gateway console with model access.
Point your client to the MoleAPI gateway endpoint.
Make the first call using an OpenAI-compatible pattern.
In most clients, you only replace the Base URL and API key while keeping the surrounding integration pattern.
import OpenAI from 'openai';
const client = new OpenAI({
baseURL: 'https://api.moleapi.com/v1',
apiKey: process.env.MOLEAPI_API_KEY,
});
const response = await client.chat.completions.create({
model: 'gpt-4.1',
messages: [{ role: 'user', content: 'hello' }],
});Jump straight to the part of the docs you need
Whether you are onboarding a team, wiring a client, checking API details, or deploying an app, the homepage should route you in one click.
Getting Started
Learn API keys, Base URL, billing modes, and the basic gateway workflow.
AI Applications
Follow integration guides for apps such as Cherry Studio and AionUi.
CLI Usage
Connect Claude Code, Codex, Factory, and similar command-line tools.
Deployment
Deploy self-hosted apps such as NextChat and LobeChat.
API Reference
Read model APIs, management APIs, request formats, and parameters.
Support
Find FAQ, community channels, and feedback or issue reporting paths.
Use docs first, then move into support channels
The support section handles FAQ, community, and issue reporting. The gateway console remains focused on accounts and operational actions.
FAQ
Check existing answers before opening a new issue or support request.
Community
Join the community channel for usage discussion and announcements.
Feedback and issues
Report documentation issues, integration failures, or product suggestions.
Gateway console
Open the gateway when you need to create keys, inspect balance, or change settings.