TKEN API quickstart

Make your first OpenAI-compatible TKEN request

Create an API key, set https://www.tken.shop/v1 as the base URL, and run one chat completion before integrating a full app, dashboard, agent, or Open WebUI deployment.

First request chat completions
export TKEN_API_KEY="replace-with-your-key"

curl https://www.tken.shop/v1/chat/completions \
  -H "Authorization: Bearer $TKEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "MiniMax-M2.7",
    "messages": [
      {"role": "user", "content": "Reply with one short sentence."}
    ]
  }'
Base URL: https://www.tken.shop/v1
Bearer token: your TKEN API key
Start with one low-cost smoke test

Use the same endpoint in code

Once cURL works, move the same base URL into Node.js, Python, LiteLLM, Open WebUI, Cursor, Continue or any tool that supports an OpenAI-compatible provider.

Base URL
https://www.tken.shop/v1
Endpoint
/chat/completions
Secret
TKEN_API_KEY
Next check
Live pricing and model list

Three-step setup

1. Create an account and API key

Register, open the console token page, and copy a key into your local environment or deployment secret store.

2. Run one smoke test

Use cURL first. If the response succeeds, repeat the same request from your SDK or tool.

3. Check cost and routing before production

Model availability and prices may change. Use the live pricing table and keep short request logs that do not expose prompts, keys, customer identifiers or private data.

TKEN is an independent third-party API gateway. It is not an official endpoint for OpenAI, Anthropic, Google, DeepSeek, Qwen, Kimi, MiniMax, GLM or other model providers.

Start with one request

Verify your key, base URL and model name before moving TKEN into a production workflow.