CROWBOT
DOCS CHAT LLMS.TXT DISCORD LOG IN

One API. All you need.

I won't keep you waiting._

Mainstream models at a fraction of their list price AND our own uncensored frontier models in ONE API.
We don't even store your data or your personal information. Are you kidding me??? I think I'm gonna cry.

By the way, you can just give our llms.txt to your coding model and have it implement crowbot into your favourite agent cli.

01 the cheapest frontier inference around

The big ones. At a fraction of the price.

We strictly bill $/M tokens and pass through cached pricing at zero loss. If you wanna use top intelligence at a big scale, i suggest you take a look at our options.

ModelInputCached inputOutput You saveContext
GPT 6 Astra OpenAI DefaultOpenAI's latest baby. Good for anything.$0.30$10.00$0.03$1.00$1.50$50.00−97%1M
GPT 6 Sol OpenAIOpenAI's fast one, a generation on.$0.18$2.00$0.018$0.20$0.90$10.00−91%1M
Kimi K3 MoonshotMoonshot's coding specialist.$0.27$3.00$0.027$0.30$1.35$15.00−91%1M
GPT 5.6 Sol OpenAI Best dealOpenAI's fast one. Cheap and cheerful.$0.08$4.00$0.008$0.40$0.40$20.00−98%1M
DeepSeek V4.1 Flash DeepSeekDeepSeek's fast one. Cheap enough to leave running.$0.045$0.30$0.0009$0.006$0.18$1.20−85%1M
Gemini 3.8 Flash GoogleGoogle's fast one. A million tokens of context, quick to answer.$0.0675$0.75$0.0067$0.075$0.3375$3.75−91%1M
Claude Opus 5.5 Anthropic Coming soonAnthropic's largest. For the hardest work.————1M
Claude Fable 5.1 Anthropic RetiredAnthropic's newest. Careful with long, detailed work.$1.50$10.00$0.0375$0.25$7.50$50.00−85%1M
Claude Opus 5 Anthropic RetiredTemporarily unavailable.$0.15$5.00$0.015$0.50$0.75$25.00−97%1M

Live · repriced

02 answer the unanswered

CROW: Frontier intelligence unleashed.

Pretty much entirely uncensored except for the obvious candidates like CSAM. Aimed towards red-team researchers and developers.

>
Typical model Policy block
I can't help with that. can be used to , so I'm not able to for you.
CROW Answered
ModelInputCached inputOutput Context
CROW 2 CrowbotZero Refusal. Deepest Reasoning. Ideal for Red Teaming.$6.00$0.60$10.001M
CROW 1 CrowbotThe cheaper one. Surprisingly creative, though.$3.00$0.30$5.00262K

03 or pay once a month

One price. A month of it.

A pass covers the frontier models for a month, and the CROW models too from Vibecoder up. It pays before your wallet does; the wallet only pays for what the pass does not.

Starter
$15/ 30 days

For trying it properly.

  • Chat messages≈ 2,400 a day
  • Agentic coding2 agents, all day
  • Heavy output≈ 32 h a day across 2 agents
  • Long-context work≈ 24 h a day

Estimates on GPT 5.6 Sol at today's rates.

CROW models: Vibecoder and Hyperscaler only

Refills every day · Cancel any time

Get a pass
Vibecoder
$40/ 30 days

A working day, every day.

  • Chat messages≈ 6,400 a day
  • Agentic coding3 agents, all day
  • Heavy output3 agents, all day
  • Long-context work≈ 63 h a day across 3 agents

Estimates on GPT 5.6 Sol at today's rates.

+ CROW models included

Refills every day · Cancel any time

Get a pass
Hyperscaler
$95/ 30 days

Agents, running.

  • Chat messages≈ 15,000 a day
  • Agentic coding4 agents, all day
  • Heavy output4 agents, all day
  • Long-context work4 agents, all day

Estimates on GPT 5.6 Sol at today's rates.

+ CROW models included

Refills every day · Cancel any time

Get a pass

Compatibility

Easy to use.

Available over all the common endpoints (/v1 and such). Any OpenAI-compatible client will work.

opencodeOne command

One command writes the provider config and pairs the machine.

Codex

One provider block in config.toml: base URL, key, chat wire API.

Claude Code

Through a Messages-to-chat-completions proxy such as LiteLLM.

OpenAI SDK

Python, TypeScript, or anything speaking chat-completions.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.crowbot.sh/v1",
    api_key="4192083755612094",   # your account number
)
r = client.chat.completions.create(
    model="gpt-6-astra",
    messages=[{"role": "user", "content": "..."}],
)
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.crowbot.sh/v1",
  apiKey: "4192083755612094",
});
const r = await client.chat.completions.create({
  model: "gpt-6-astra",
  messages: [{ role: "user", content: "..." }],
});
curl https://api.crowbot.sh/v1/chat/completions \
  -H "Authorization: Bearer 4192083755612094" \
  -H 'content-type: application/json' \
  -d '{"model": "gpt-6-astra",
       "messages": [{"role": "user", "content": "..."}]}'

Getting started

Three steps.

01Create an account

A 16-digit number, generated in the browser. No email, no password. It is also your API key.

02Fund it

Pay by crypto or card. Crypto covers all the major currencies.

03Point your client at it

Change the base URL and the key. Nothing else.

One command

opencode, wired in a line.

Writes the provider config and pairs this machine.

# writes the config and pairs this machine
curl -fsSL https://crowbot.sh/install.sh | bash
# Windows, in PowerShell
irm https://crowbot.sh/install.ps1 | iex

Full opencode guide