Getting Started
Token Exchange allows you to pool LLM API keys with others, sharing rate limits proportionally based on contribution.
Quick Start
- 1Create an account
Sign up at /signup with your email and password.
- 2Get your Platform API Key
After signup, you'll receive a platform key (starts with
txk_). Save it securely - it's only shown once. - 3Add a Provider Key
In the dashboard, add your OpenAI, Anthropic, or Google API key to contribute to the pool.
- 4Create a Pledge
Pledge tokens from your provider key. This determines how many tokens you can draw from the pool.
- 5Make API Requests
Use the proxy endpoints with your platform key to access pooled LLM capacity.
First Request Example
curl -X POST https://api.token-exchange.tekton.cc/v1/proxy/openai/chat/completions \
-H "Authorization: Bearer txk_your_platform_key_here" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4",
"messages": [{"role": "user", "content": "Hello!"}]
}'