One OpenAI-compatible endpoint for every open model worth running
at the best price per token on the market
# Point the OpenAI SDK at tokenclub - that's the whole migration. from openai import OpenAI client = OpenAI( base_url="https://api.tokentoken.club/v1", api_key="tk-••••••••", ) resp = client.chat.completions.create( model="moonshotai/kimi-k3", messages=[{"role": "user", "content": "ship it"}], )
Every model is deployed, quantized and load-balanced by us - flagship quality at the best price per token on the market, and 90% off every cached token. No GPU babysitting. Text only.
DeepSeek's speed-tuned model for high-throughput coding and chat at rock-bottom cost across a 1M-token window.
DeepSeek's flagship for deep reasoning, full-codebase analysis, and long-horizon agents.
Flagship reasoning and agentic model, tuned for tool-calling and long-horizon coding tasks.
Sparse-attention model for cheap, fast long-context work at scale.
Moonshot's open-weight reasoner, strong on large-repo navigation, debugging, and multi-step tool use.
OpenAI's open-weight model with configurable reasoning depth and native tool use, runs lean and fast.
tokenclub speaks the OpenAI API you already use. Swap the base URL and key - every SDK, framework and tool just works. No rewrites, no vendor lock-in.
curl https://api.tokentoken.club/v1/chat/completions \ -H "Authorization: Bearer $TOKENCLUB_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "moonshotai/kimi-k3", "messages": [ {"role": "user", "content": "Explain MoE in one line."} ], "stream": true }'
from openai import OpenAI client = OpenAI( base_url="https://api.tokentoken.club/v1", api_key=os.environ["TOKENCLUB_KEY"], ) stream = client.chat.completions.create( model="deepseek-v3", messages=[{"role": "user", "content": "Explain MoE."}], stream=True, ) for chunk in stream: print(chunk.choices[0].delta.content or "", end="")
import OpenAI from "openai"; const client = new OpenAI({ baseURL: "https://api.tokentoken.club/v1", apiKey: process.env.TOKENCLUB_KEY, }); const res = await client.chat.completions.create({ model: "qwen-3", messages: [{ role: "user", content: "Explain MoE." }], }); console.log(res.choices[0].message.content);
Grab a key and keep your OpenAI code