Sign Up
Create your account and personal organization automatically.
Fast gateway to chat, reasoning, code, image, video, audio, voice, search, and agent models under one Credits account.
Create your account and personal organization automatically.
Buy Credits, redeem launch gifts, or connect enterprise billing.
Issue keys for apps, servers, devices, teams, and terminals.
Show the models users already know first. Actual routing, credentials, pricing, and fallback are maintained in the backend catalog.
Meet ROUTE AGENT Default
Users choose the model they recognize. Operators control official API routes, lower-cost plan routes, token plans, relay pools, health checks, and enterprise-specific fallback trees behind the scenes.
Fastest inference
Production-ready
Chat, code, image, voice, and search routes stay behind one console, one customer key, and one billing flow.
OpenAI-compatible, Anthropic-compatible, and REST traffic share the same customer-facing setup.
Customers see models, Credits, and controls. Provider pools, routing policy, and fallback stay server-side.
Simple integration
import OpenAI from "openai"; const client = new OpenAI({ apiKey: process.env.ROUTE_AGENT_KEY, baseURL: "https://api.routeagent.local/v1" }); const completion = await client.chat.completions.create({ model: "GPT-5.5 Pro", messages: [{ role: "user", content: "Ship it" }] });import Anthropic from "@anthropic-ai/sdk"; const client = new Anthropic({ apiKey: process.env.ROUTE_AGENT_KEY, baseURL: "https://api.routeagent.local/anthropic" }); const message = await client.messages.create({ model: "Claude Fable 5", max_tokens: 512, messages: [{ role: "user", content: "Ship it" }] });curl http://localhost:18080/v1/chat/completions \ -H "Authorization: Bearer $ROUTE_AGENT_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "GPT-5.5 Pro", "messages": [{"role": "user", "content": "Ship it"}] }'
Scale from proof-of-concept to production while keeping user-facing Credits simple.
Small tests, personal scripts, and first integration checks.
For active prototypes, internal tools, and recurring automations.
For apps, teams, support workflows, and customer-facing services.
Large workloads, device bundles, and high-volume API usage.