One interface
Keep your existing SDK and request shape. Change only the base URL and API key.
Read the quickstart →01 MOMOYAI DEVELOPER PLATFORM
A familiar OpenAI request shape with a more flexible model catalog. Spend your time on the product, not on rebuilding infrastructure.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.momoyai.com/v1",
apiKey: process.env.MOMOYAI_API_KEY,
});
const response = await client.chat.completions.create({
model: "gpt-5",
messages: [{ role: "user", content: "Hello" }],
});{ "ready": true, "latency": "842ms" }All systems operational
02 BUILD WITHOUT FRICTION
From the first request to production, use one clear API, focused docs, and a live model catalog throughout your workflow.
Keep your existing SDK and request shape. Change only the base URL and API key.
Read the quickstart →Move between text, code, and image capabilities with explicit model IDs.
Browse the catalog →Parameters, streaming, clients, and troubleshooting—right where you need them.
Explore the API →03 MAKE THE FIRST CALL