Token Plan
"Next-Gen AI TOKEN" Intelligent gateway platform with customizable smart routing. 100+ free calls every day.

...
Uptime
...
Avg Latency
...
Channels
...
Models
Why Choose DX TOKEN
Free Route
gk2.com/free unified entry, 100+ free calls daily, member invite bonus permanently increases quota
Smart Routing
Custom model combination routing with active-standby/round-robin/random strategies, seamless auto-failover
Fusion
Multiple models respond in parallel + judge model fuses optimal results, one-click create shared presets
Web Search
Add :online suffix to model name for auto internet search, real-time info injected into responses, supports Bing/DuckDuckGo
Prompt Library
Template-managed Prompts with {{variable}} dynamic rendering, versioning and one-click copy
AIGC Creation
Integrated image & video generation via Volcengine/Alibaba/Baidu unified API, per-image/per-second billing
Team
Create organizations, invite members, share balance & API keys for team collaboration and enterprise use
BYOK
Connect your own API providers, use {ID Code}/{model} to call, free with no balance deduction, auto-failover
Coding Plan
AI coding plan for developers, prepay for discounted multi-model access, per-call deduction, cost-effective and flexible
Enterprise-Grade Security
Multi-layer protection for every AI call
TLS 1.3 Encryption
All data transfer uses TLS 1.3 encryption, ensuring communication security
Secure Key Storage
API keys stored with bcrypt hashing, irreversible encryption
Privacy Protection
Request logs don't record sensitive content, GDPR compliant
Real-time Monitoring
24/7 system monitoring with automatic anomaly alerts
Auto Failover
Auto-switch to backup channels on failure, seamless to users
Rate Protection
Multi-dimensional rate limiting (TPM/RPM/IP), prevents abuse and malicious calls
3-Step Integration
Create Account
Register in 30 seconds, get free quota instantly
Get API Key
One-click creation in console, with quota and model limits
Start Calling
Just replace the API endpoint, compatible with OpenAI SDK
Developer Friendly
Just replace the API endpoint, compatible with all OpenAI SDK interfaces
1curl https://www.gk2.com/v1/chat/completions \2 -H "Authorization: Bearer atk-your-key-here" \3 -H "Content-Type: application/json" \4 -d '{5 "model": "gpt-4o",6 "messages": [7 {"role": "user", "content": "Hello!"}8 ]9 }'
1import openai23client = openai.OpenAI(4 api_key="atk-your-key-here",5 base_url="https://www.gk2.com/v1"6)78response = client.chat.completions.create(9 model="gpt-4o",10 messages=[{"role": "user", "content": "Hello!"}]11)1213print(response.choices[0].message.content)