Open WebUI
Configure Open WebUI with the TKEN base URL and a gateway API key.
Developer resource hub
Start with one base URL, one API key, and practical setup guides for SDKs, agents, dashboards, coding tools, reliability patterns, and cost controls.
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.TKEN_API_KEY,
baseURL: "https://www.tken.shop/v1"
});
const result = await client.chat.completions.create({
model: "MiniMax-M2.7",
messages: [{ role: "user", content: "Run one smoke test." }]
});
These pages help a new developer understand the gateway, create a key, run one request, and compare costs before moving into a full app or tool integration.
Configure Open WebUI with the TKEN base URL and a gateway API key.
Route LiteLLM requests through an OpenAI-compatible gateway while keeping a standard provider shape.
Set an OpenAI-compatible base URL for coding workflows that support custom endpoints.
Use TKEN as an OpenAI-compatible provider in Continue for editor assistance.
Plan MCP and tool-calling flows with conservative compatibility checks and a clear smoke-test path.
Use these pages when you are moving from a successful smoke test to a production workflow with streaming, embeddings, structured outputs and predictable failure handling.
Rotate keys and store secrets without exposing them in browser code, public repos, logs or support conversations.
Put model choice, max tokens, retry limits and recharge checks in place before production traffic grows.
Create an API key, set https://www.tken.shop/v1 as the base URL, and test one chat completion before moving a tool or app to TKEN.