Best execution
for every token

Hyperouter is a smart order router for AI. Each request is quoted across every provider serving the model and filled at the best price, latency and uptime.

0%Markup on token prices
3.0%Card top-up fee
2.5%USDC / USDT top-up fee
1API key for every model

Markets

List prices per 1M tokens, set by each model’s developer. Hyperouter charges exactly the same.

Models API
ModelInput / 1MOutput / 1MTypical call (2K in, 500 out)

Prices shown at time of publishing. The Models API returns live prices.

How an order gets filled

Popular models trade on several venues. Hyperouter quotes all of them on every request.

  1. Quote. Price, latency and recent error rate are checked for every provider serving the model.
  2. Route. The order goes to the best venue within your constraints. Ties on price go to the fastest.
  3. Fail over. If a venue errors or stalls, the order moves to the next one. Failed attempts are not billed.
  4. Settle. Cost is debited from your balance at the venue’s price, with a line item for every call.
anthropic/claude-sonnet-5Venue quotes
Illustrative example
VenueIn / OutLatencyThroughputUptime
Anthropic$3.00 / $15.000.41s78 tok/s99.98%Filled
Amazon Bedrock$3.00 / $15.000.52s71 tok/s99.95%
Google Vertex$3.00 / $15.000.61s64 tok/s99.90%
Venue D$3.00 / $15.0097.12%Halted

Same price on three venues, so the order fills at the lowest latency. Venue D is skipped after elevated error rates in the last 60 seconds.

Works with the OpenAI SDK

Swap the base URL and key. Streaming, tool calls, JSON mode and image input behave the same on every venue.

import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://hyperouter.app/api/v1",
  apiKey: process.env.HYPEROUTER_API_KEY,
});

const res = await client.chat.completions.create({
  model: "anthropic/claude-sonnet-5",
  messages: [{ role: "user", content: "Hello" }],
});

Model access should work like a market: open to anyone, priced in the open, and routed to whoever serves it best.

01

No markup

Tokens are billed at the provider’s list price. Hyperouter earns a fee on top-ups, not a spread on your usage.

02

Transparent routing

Every response reports the venue it was filled at and what it cost. The same data is in your usage export.

03

Your data stays yours

Prompts are not logged by default. Restrict routing to zero-retention venues with one setting. See the Privacy Policy.

Pricing

No subscriptions, no minimums. Top up a balance and pay for the tokens you use at the provider’s price.

Model usageProvider list price
Top-up by card3.0%
Top-up by crypto (USDC, USDT)2.5%
Failed requestsNot billed
Volume above $50K / monthCustom rate, monthly invoice

FAQ

What is Hyperouter?

One API that routes your requests to model providers such as OpenAI, Anthropic, Google, DeepSeek, xAI, Alibaba Qwen, Moonshot and Zhipu. One key, one balance, one statement.

How do I get access?

Hyperouter is onboarding teams ahead of public launch. Request an API key and we’ll reply from account@hyperouter.app.

Is it more expensive than going direct?

No. Token prices match the provider’s list price. The only fee is 3.0% when you top up by card, or 2.5% with USDC or USDT.

What happens when a provider goes down?

The request moves to another venue serving the same model, or to the next model in your models list. Failed attempts are not billed.

Do you store my prompts?

Not by default. Logging is off unless you enable it, and you can restrict routing to venues that retain no data. Details in the Privacy Policy.

Can I keep my existing code?

Yes. Set the base URL to https://hyperouter.app/api/v1 and use your Hyperouter key. Anything built for the OpenAI Chat Completions API works.