✨ One subscription. Every model.

Every AI in one chat.
Pay one bill, not ten.

Chat with GPT-4o, Claude 3.5 Sonnet, Gemini 2.0, Llama 3.3, DeepSeek, Grok, and 100+ more — without juggling subscriptions, tabs, or API keys.

Start chatting — no signup → See pricing

The whole frontier in one box

No more \

OpenAI
GPT-4o
128k ctx · vision
OpenAI
GPT-4o mini
128k · fast & cheap
Anthropic
Claude 3.5 Sonnet
200k · top reasoning
Anthropic
Claude 3 Haiku
200k · low latency
Google
Gemini 2.0 Flash
fast · vision
Meta
Llama 3.3 70B
open · 128k
DeepSeek
DeepSeek V3
strong code
xAI
Grok 2
131k ctx
Mistral
Mistral Small 3.1
free · multimodal
Qwen
Qwen 2.5 72B
open · multilingual

…and 100+ more, with new models added every week

Built for power users

Everything you'd expect from a serious AI workspace, with none of the lock-in.

Real streaming

Tokens flow in as they're generated, with markdown, code highlighting, and a stop button — not a \

🤖

12+ ready-made bots

Writing coach, code mentor, SQL whisperer, growth marketer, dungeon master… each tuned with the right system prompt and model.

🖼️

Image understanding

Drag in a screenshot, photo, or whiteboard — vision-capable models read it, transcribe it, and answer questions about it.

⚙️

Developer API

OpenAI-compatible POST /v1/chat/completions. Same credit balance as your chat. See the docs →

🔁

Edit, regenerate, branch

Bad answer? Regenerate. Bad question? Edit it and resubmit — the chat rewinds. Switch models mid-conversation.

🌓

Dark mode that doesn't suck

Inter font, generous whitespace, real syntax highlighting. Looks just as good at 11pm.

⚙️ Developer API

One key. Every model.

Drop-in OpenAI-compatible. Same credit balance as your chat — no separate plan, no separate billing. Switch from openai/gpt-4o to anthropic/claude-3.5-sonnet by changing one string.

  • One sk-faceb-… key for 100+ models
  • Streaming + non-streaming, OpenAI response shape
  • Credits charged shown on every response — no surprise invoices
  • No retention. We don't log prompts or responses.
curl https://api.faceb.ai/v1/chat/completions \
  -H "Authorization: Bearer sk-faceb-YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "anthropic/claude-3.5-sonnet",
    "messages": [{"role":"user","content":"Hello!"}],
    "stream": true
  }'
from openai import OpenAI

client = OpenAI(
    base_url="https://api.faceb.ai/v1",
    api_key="sk-faceb-YOUR_KEY",
)

stream = client.chat.completions.create(
    model="openai/gpt-4o",
    messages=[{"role": "user", "content": "Write a haiku."}],
    stream=True,
)
for chunk in stream:
    print(chunk.choices[0].delta.content or "", end="", flush=True)
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.faceb.ai/v1",
  apiKey: "sk-faceb-YOUR_KEY",
});

const stream = await client.chat.completions.create({
  model: "google/gemini-2.0-flash-exp:free",
  messages: [{ role: "user", content: "Suggest a startup name." }],
  stream: true,
});
for await (const chunk of stream) {
  process.stdout.write(chunk.choices[0]?.delta?.content || "");
}

Simple pricing

50k credits on signup. Upgrade when you need more.

Frequently asked

How is this different from ChatGPT or Claude.ai?

ChatGPT only gives you OpenAI models. Claude.ai only gives you Anthropic. Faceb.ai gives you both, plus Gemini, Llama, DeepSeek, Grok, Mistral, Qwen and 100+ more — all from a single subscription, with one consistent UI, history, and bot library.

Where does the AI actually run?

Faceb.ai talks to each provider's official API on your behalf. Your messages aren't used to train any model and we never see them in plaintext beyond what's needed to route the request.

Do I keep my conversations if I cancel?

Yes. Your account, chat history, and saved bots stick around. To keep chatting after your Pro credits run out, top up a credit pack or re-subscribe.

Can I share a chat publicly?

Click the share icon in any chat and you get a clean read-only link you can hand to anyone — they don't need an account.

Are the cheap models any good?

Absolutely. Llama 3.3 70B, Mistral Small 3.1, Gemini 2.0 Flash and DeepSeek V3 are a fraction of the cost of GPT-4o and Claude Opus but get most day-to-day jobs done. Save the heavy models for when you actually need them and your credit pool lasts much longer.

Do you have a developer API?

Yes — it's OpenAI-compatible (POST /v1/chat/completions) and uses the same credit balance as your chat account, so one wallet covers both. See the docs →

Ready to stop juggling tabs?

Try it now — no signup