Budget
Fastest low-cost entry.
OpenAI-compatible
Pick the route that fits your team, then swap the base URL and keep your client.
Pick your path
Start with price, move toward stability, or keep your own keys without changing the way your app talks to the API.
Fastest low-cost entry.
Steadier default for production.
Use your own keys and keep control.
const client = new OpenAI({
apiKey: process.env.ONEKEYMODELS_API_KEY,
baseURL: "https://onekeymodels.com/v1"
});Pick your path
Public naming stays simple so teams can decide faster before they ever create a workspace.
Fastest low-cost entry.
Best for testing, side projects, and early traffic.
Steadier default for production.
Best when support and reliability matter more.
Use your own keys and keep control.
Best when ownership matters more than price.
Quickstart
The integration change is mostly the endpoint and the key.
First request
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.ONEKEYMODELS_API_KEY,
baseURL: "https://onekeymodels.com/v1"
});
const result = await client.responses.create({
model: "gpt-4.1-mini",
input: "Write a one-sentence product summary."
});
console.log(result.output_text);Built for real usage
Public model preview on one side, live reliability on the other.
Model preview
Cheapest start for launch traffic.
Steadier production posture with the same client shape.
Own-provider control with a familiar API contract.
Live status
Most checks are healthy right now. The public API stays OpenAI-compatible, and the latest live signal is shown here.
Questions before signup
Usually no. Keep your OpenAI-compatible client and update the base URL and API key.
Start with Budget if you want the fastest test. Choose Business for a steadier default, and pick BYOK when you already manage your own provider keys.
Yes. The goal is to keep one familiar integration while letting your route evolve with cost, stability, or control needs.
Billing follows the route you choose. The public site focuses on structure and fit rather than publishing one universal platform price.
Start now
Start on Budget, move to Business or BYOK when your product or customer needs a different default.