Earn TRS rewards by routing your AI API calls through Torus
Total Users
...
With linked tracking
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 and proxy routing through simple tool calls — no manual configuration needed.
Using Claude Code with a Pro, Team, or Enterprise subscription — or OpenAI's Codex CLI with a ChatGPT Plus or Pro 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.
Every Cycle, 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!' }]
})