OpenCode Proxy

online

Free AI models via OpenCode API — no rate limits from Cloudflare

Base URL
https://janitor-pi.vercel.app
Endpoint
/v1/chat/completions

Showcase

10s
10s
0:00 / 0:00

Supported Models

MiMo v2.5 Thinking
Compact reasoning model optimized for math, code, and logical problem-solving. JanitorAI can show or hide thinking when available.
mimo-v2.5-free
DeepSeek V4 Flash Thinking
Fast inference model with strong coding and analytical performance. Thinking metadata is preserved for compatible clients.
deepseek-v4-flash-free
Nemotron 3 Ultra Thinking
High-performance model built for structured data extraction and complex reasoning with preserved thinking fields.
nemotron-3-ultra-free
North Mini Code North
Lightweight code-specialized model for quick completions, refactoring, and code explanation tasks.
north-mini-code-free

Quick Start

# cURL
curl https://janitor-pi.vercel.app/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "mimo-v2.5-free",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

# Python (openai SDK)
from openai import OpenAI

client = OpenAI(
    base_url="https://janitor-pi.vercel.app",
    api_key="anything"
)

response = client.chat.completions.create(
    model="deepseek-v4-flash-free",
    messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)