What if…
We made it real?
Bring the unfinished.
A thought, a brief, a difficult question. Start with what you have and refine it in the sandbox.
A place for your questions, your code, and your next
“what if.” Meet the AI workspace that keeps it together.
Less blank-page energy.
More “let’s make it.”
01Define who it is for and the problem it solves.
02Build the smallest complete customer journey.
03Test with five people. Keep the useful feedback.
04Ship, measure, and improve one thing at a time.
Understand the request
Organize the context
Compose an answer
A few examples to get you thinking. Sign in to send your own prompts through the connected model routes.
An idea rarely arrives fully formed. Muse gives it somewhere to go — from the first messy question to a draft, a plan, or a piece of working code.
One workspace brings prompts, model routes, API keys, and usage together. You decide what to ask. You stay in control of what happens next.
Find your starting pointWhat if…
We made it real?
A thought, a brief, a difficult question. Start with what you have and refine it in the sandbox.
Keep available models and route costs in view. Choose the right route for the task in front of you.
API keysScoped
CreditsVisible
UsagePer request
Manage keys and review consumption from your dashboard. Your workspace, with the details attached.
Use the OpenAI-compatible API with the tools you already know. Discover available routes, send your first request, and keep building.
Open the documentationimport OpenAI from "openai";
const muse = new OpenAI({
apiKey: process.env.OPENMUSE_API_KEY,
baseURL: "https://openmuse.fun/api/v1"
});
const models = await muse.models.list();
const answer = await muse.chat.completions.create({
model: models.data[0].id,
messages: [{ role: "user", content: "Let's make something." }]
});Token credit packs for your workspace.
Model multipliers determine consumption.
Review available payment methods after sign-in.
A first idea. A first request.
Choose StarterFor the things you make every day.
Choose BuilderRoom for bigger projects.
Choose ProFor your most ambitious builds.
Choose MaxOpenMuse is an AI workspace and API gateway. Muse is the workspace’s agent identity; responses are powered by the model routes available in your account.
No. Muse is the OpenMuse experience built around connected model providers. Available route names and pricing are shown in the workspace. It is not affiliated with OpenJEV or another Muse-branded service.
Yes. The gateway uses an OpenAI-compatible API. Set your base URL, add a workspace API key, and choose a route returned by the models endpoint. See the docs for examples.
Requests consume token credits according to their usage and the selected route multiplier. Check the current balance, route cost, and request history in your dashboard.
The current workspace handles prompts and API requests. The homepage examples do not connect to your calendar, inbox, or files, and do not execute external actions.