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.
No more \
…and 100+ more, with new models added every week
Everything you'd expect from a serious AI workspace, with none of the lock-in.
Tokens flow in as they're generated, with markdown, code highlighting, and a stop button — not a \
Writing coach, code mentor, SQL whisperer, growth marketer, dungeon master… each tuned with the right system prompt and model.
Drag in a screenshot, photo, or whiteboard — vision-capable models read it, transcribe it, and answer questions about it.
OpenAI-compatible POST /v1/chat/completions. Same credit balance as your chat. See the docs →
Bad answer? Regenerate. Bad question? Edit it and resubmit — the chat rewinds. Switch models mid-conversation.
Inter font, generous whitespace, real syntax highlighting. Looks just as good at 11pm.
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.
sk-faceb-… key for 100+ modelscurl 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 || "");
}
50k credits on signup. Upgrade when you need more.
Kick the tires.
$14.99 monthly · cancel anytime.
Pay once. 15M credits / month forever.
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.
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.
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.
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.
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.
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 →