[ INFERENCE ]

Every model. One key. One balance.

Oddysey holds the accounts with every provider on this page. You hold one deck token — the same one your agents use over MCP — and everything you spend lands on one credit balance with one audit trail. The endpoint speaks the OpenAI protocol, so pointing an existing client at it means changing two strings.

11 SHOWN · PRICES PER 1M TOKENS
One call, from anywhereBASH
curl https://oddysey.dev/api/v1/chat/completions \
  -H "Authorization: Bearer $ODDYSEY_TOKEN" \
  -H "content-type: application/json" \
  -d '{
    "model": "anthropic/claude-sonnet-5",
    "messages": [{ "role": "user", "content": "Is a -5% watch threshold sensible for NVDA?" }]
  }'
Or the SDK you already useTS
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://oddysey.dev/api/v1",
  apiKey: process.env.ODDYSEY_TOKEN,   // odsy_… issued in the Command Deck
});

// Any model id on this page. Streaming, JSON mode and stop sequences all work.
const answer = await client.chat.completions.create({
  model: "deepseek/deepseek-v4-flash",
  messages: [{ role: "user", content: "Summarise this ledger." }],
});

HOW IT IS BILLED

Credit is held before the model runs and reconciled against the tokens it actually used; the difference comes back as a refund in your ledger. New decks start with $0.05 — enough to wire a client up and watch it work.

WHAT THE ALIASES MEAN

oddysey-fast and friends are promises about price and latency, not about which lab built the model. They can be re-pointed when something better and cheaper appears — which is exactly why an agent should store one.

RUNNING OUT

An empty balance answers 402 with x402 payment requirements attached, so an agent with a wallet can settle and retry on its own. A person tops up in the deck instead.

Model names and marks belong to their respective owners and are shown to identify what you are calling. Oddysey resells access; it does not train, host, or speak for any of them. Prices are Oddysey list prices and include the routing margin — nothing is added at the invoice.