Earn TRS rewards by routing your AI API calls through Torus
Total Users
...
With API keys
Total Spent
...
All time
TRS Distributed
...
Weekly pool rewards
This Week
...
Spent this week
Ranked by usage cost
Loading leaderboard...
Explore ways to earn TRS from your AI usage. Pick whichever suits your workflow — or combine them.
Install the Torus MCP server in Claude Code, Cursor, or any MCP-compatible client. It handles setup, proxy routing, and usage linking through simple tool calls — no manual configuration needed.
Using Claude Code with a Pro, Team, or Enterprise subscription? The MCP server reports your session usage automatically — no API key needed.
Route your AI calls through Torus. Generate a proxy token, point your client at the Torus endpoint using the combo format (trs_TOKEN:APIKEY) or custom headers. Torus forwards each request to the provider and logs usage in real time.
Keep using your provider directly — no proxy needed. Link your admin API key on your profile and Torus periodically polls the provider's usage API to track your spend. Your key is encrypted at rest.
Every Sunday, your usage across all methods is tallied. You earn TRS from the weekly pool proportional to your share of total platform usage.
import OpenAI from 'openai'
const client = new OpenAI({
apiKey: 'trs_YOUR_PROXY_TOKEN:sk-or-YOUR_OPENROUTER_KEY',
baseURL: 'https://torus.cc/api/ai/v1',
defaultHeaders: { 'X-Torus-Provider': 'openrouter' },
})
const response = await client.chat.completions.create({
model: 'anthropic/claude-sonnet-4',
messages: [{ role: 'user', content: 'Hello!' }]
})