No Login Required โ€” Start Now

$5.
Infinite Requests.
No Token Limits.

Free tier: no signup, 1 req/min. Pro: $5/mo unlimited. One API, every open-source model.

Start Building โ†’ View Docs
# Configure in one command
curl -s https://thetrillioniar.me/setup/claude-code?key=sk-tr-xxx | bash

Everything You Need

A complete AI inference platform built for developers

โšก

Drop-in Compatible

Works with OpenAI SDK, Anthropic SDK, Claude Code, Codex. Just change the base URL.

๐Ÿง 

Smart Auto-Routing

Send "auto" and our router picks the best model for coding, math, reasoning, or chat.

๐Ÿ”’

Docker Isolation

Every user runs in their own container. Your prompts never touch another user's data.

๐Ÿ“Š

Full Tracking

Tokens, latency, tool calls, costs โ€” everything logged to your dashboard in real time.

๐Ÿ’ฌ

Built-in Chat

Chat interface with model selection, no API key needed. Just login and start talking.

๐Ÿ”‘

API Key Scoping

Lock keys to specific models, IPs, or endpoints. Full control over access permissions.

How Our Models Work

Transparent about what's running under the hood

Trillionir AI provides OpenAI and Anthropic API compatibility using a pool of real open-source models running on our infrastructure. The branded model names (GPT-4o, Claude, Gemini) are compatibility aliases โ€” they route to our benchmarked open-source models so your existing code works without changes.

Branded Names โ†’ Real Models

openai/gpt-5.5 โ†’ Gemma 4 31B
openai/gpt-4o โ†’ Gemma 4 31B
anthropic/claude-opus-4 โ†’ Gemma 4 31B
anthropic/claude-sonnet-4 โ†’ Devstral 24B
google/gemini-2.5-pro โ†’ Gemma 4 31B
google/gemini-2.0-flash โ†’ RNJ-1 8B
auto โ†’ Best model for your task

Why This Works

โœ“ OpenAI/Anthropic SDK compatible
โœ“ Real benchmark scores on our leaderboard
โœ“ Task-optimized routing (coding, math, chat)
โœ“ $5/mo flat โ€” no per-token charges
โœ“ Your code works without modification

All benchmark scores on our community leaderboard are real โ€” tested with actual prompts across coding, reasoning, math, creative, and chat categories.

Simple, Fair Pricing

Think of it like unlimited mobile data. Most users never hit the cap.

Free

$0/mo
  • No login required
  • 1 req/min ยท 10 req/hour
  • All models included
  • API + Chat interface
Get Started

Starter

$5/mo
  • 30 req/min
  • Top 5 models
  • 1 seat
  • Dashboard
Get Started

Team

$60/mo
  • 300 req/min
  • All models + priority
  • 10 seats
  • Team management
Get Started

Start in Seconds

Works with your favorite tools out of the box

Python
from openai import OpenAI

client = OpenAI(
    api_key="sk-tr-your-key",
    base_url="https://thetrillioniar.me/openai"
)

response = client.chat.completions.create(
    model="auto",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
Node.js
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: 'sk-tr-your-key',
  baseURL: 'https://thetrillioniar.me/openai',
});

const res = await client.chat.completions.create({
  model: 'auto',
  messages: [{ role: 'user', content: 'Hello!' }],
});
console.log(res.choices[0].message.content);
cURL
curl https://thetrillioniar.me/openai/v1/chat/completions \
  -H "Authorization: Bearer sk-tr-your-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "auto",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'