Now routing Gemini 3 Pro

One API.
Every frontier model.

Forge is the unified gateway for 200+ AI models. Switch providers with a string, route by price or latency, and ship without rewriting a line of code.

models
248
tokens / wk
31.4B
p50 ttft
0.34s
~/forge · curl200 OK · 412ms
$ curl https://api.forge.dev/v1/chat/completions \
    -H "Authorization: Bearer $FORGE_KEY" \
    -d '{
      "model": "anthropic/claude-4.5-sonnet",
      "route": "cheapest",
      "messages": [
        { "role": "user", "content": "Plan a 3-day Lisbon trip." }
      ]
    }'

{
  "id": "fr_01J9X…",
  "model": "anthropic/claude-4.5-sonnet",
  "choices": [{ "message": {
    "role": "assistant",
    "content": "Day 1 — Alfama & Fado…"
  }}],
  "usage": { "prompt": 32, "completion": 412 },
  "cost_usd": 0.0046
}
typescript · python · go · rust · curlopenai-compatible
Routes toanthropicopenaigooglemetamistraldeepseekxaialibaba
The catalog

Text, vision, audio, image & video — one contract.

A curated view of the frontier models you can route through Forge. Pricing and availability are representative — actual runtime models are configured in your dashboard.

Text & reasoning

8 models
Model
GPT-5
Claude 4.5 Sonnet
Gemini 3 Pro
Llama 4 405B
DeepSeek R2
Qwen 3 Max
Mistral Large 3
Grok 3.5
What you get

Built for teams shipping LLM products in production.

Smart routing

Route by cost, latency, capability, or region. Failover across providers in milliseconds — your users never see a 503.

openai
anthropic
google
meta
mistral
cheapest

Cost & latency analytics

Per-route dashboards. Set spend caps and alerts. Export usage to your warehouse.

Zero retention

Prompts never leave your perimeter. SOC 2 Type II, HIPAA, EU residency.

OpenAI-compatible

Drop-in replacement for openai-sdk. Same shape for tools, vision, streaming.

Evals & A/B

Compare two models on the same prompt, side-by-side, with cost & quality scores.

Drop-in

Change one line. Switch the entire stack.

Point the OpenAI SDK at Forge and prefix the model with a vendor. That's it. Tools, streaming, vision, and JSON mode work everywhere.

  • Identical schemas across providers
  • Streaming with SSE or WebSocket
  • Per-request route override
  • Built-in cost & token accounting
openai.tstypescript
import OpenAI from "openai";

const ai = new OpenAI({
  baseURL: "https://api.forge.dev/v1",
  apiKey: process.env.FORGE_KEY,
});

const res = await ai.chat.completions.create({
  model: "google/gemini-3-pro",
  messages: [{ role: "user", content: "ship it" }],
  // optional — let Forge pick the cheapest qualified model:
  // model: "auto", route: { max_cost: 0.002 },
});
Pricing

You pay tokens. We pay the rest.

Hobby
$0Pay only for tokens.
  • All 248 models
  • Playground access
  • Per-request analytics
  • Community support
Team
$20/ seat / month
  • Shared workspaces & keys
  • Cost caps & alerts
  • Eval suites
  • Slack + email support
Enterprise
CustomSSO, residency, SLA.
  • EU / US residency
  • Private routing
  • 99.99% uptime SLA
  • Dedicated solutions eng

The last AI SDK you'll ever install.

Stop juggling SDKs, keys, and dashboards. Get one API key, route across every frontier model, and ship.