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.
TKEN API quickstart
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.
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."}
]
}'
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.
Register, open the console token page, and copy a key into your local environment or deployment secret store.
Use cURL first. If the response succeeds, repeat the same request from your SDK or tool.
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.
Verify your key, base URL and model name before moving TKEN into a production workflow.