Fireworks AI review: what it is good at, and what it is not

Fireworks AI is an inference platform for open-weight models: you send a prompt to an OpenAI-compatible or Anthropic-compatible endpoint and pay per token, or you rent a dedicated GPU by the hour. Its genuinely distinctive move is selling latency as a product tier, with Standard, Priority, and Fast rates for the same model.

By the Continuum team. We build a workbench that runs Claude Code, Codex, and their peers, so the model rates quoted here are the ones our own cost analytics ship with.

The short version

Fireworks is one of the three or four serious open-model serving companies. It runs DeepSeek, Kimi, GLM, Qwen, MiniMax, and gpt-oss families on serverless endpoints, rents H100 through GB300 GPUs on demand, and offers managed fine-tuning billed per million training tokens. The catalog is open weights plus partnership routing: you cannot buy Claude Opus or GPT-5.6 from Fireworks the way you can from the labs themselves. The interesting pricing lever is the Priority and Fast tiers, which charge 1.25x to 1.5x the Standard rate for the same model on lower-queue hardware.

What you need to know
  • Serving tiers are a product: Standard, Priority, and Fast price the same model differently. GLM 5.2 runs $1.40, $1.75, or $2.10 per million input tokens.
  • The endpoints are OpenAI-compatible and Anthropic-compatible, so most clients point at it with a base-URL change.
  • Catalog is open weights only. No first-party Claude or GPT-5.6.
  • Batch is billed at 50 percent of serverless on both input and output.
  • On-demand GPUs are expensive relative to peers: $7.00/hour for an H100, rising to $8.00 from 1 September 2026.
  • Free tier is $1 in credits. It is a smoke test, not an evaluation budget.

What Fireworks actually sells

Three products, and they are priced on completely different units, which is the first thing to get straight.

Fireworks product surfaces, August 2026.
ProductBilling unitUse it when
Serverless inferencePer million tokensYou want an endpoint and no infrastructure. Default choice.
On-demand GPUsPer GPU second, quoted hourlyYou need a custom or private model resident on dedicated hardware.
Reserved capacityNegotiatedYou need guaranteed quota and early access to new silicon.
Managed trainingPer million training tokensLoRA or full-parameter fine-tuning with automatic deployment of checkpoints.

The serverless tier is the one that matters for most readers. It speaks the OpenAI Chat Completions shape and the Anthropic Messages shape, which means a coding agent, an SDK, or a gateway configured for either vendor usually needs nothing more than a new base URL and key. That compatibility is table stakes now, but Fireworks does it cleanly.

The model catalog, and the hole in it

Fireworks serves the current generation of open and open-weight models: DeepSeek V4 in Pro and Flash variants, the Kimi K2.6, K2.7 Code and K3 line, GLM 5.1 and 5.2, Qwen 3.7 Plus and 3.8 Max, MiniMax M2.7 and M3, the gpt-oss 20B and 120B pair, and NVIDIA Nemotron models. Vision, image (FLUX.1), and audio (Whisper V3) round it out.

We keep a card per model with the independently published coding scores next to the list price, so DeepSeek V4 Pro and GLM 5.2 can be compared on quality before you decide which one Fireworks should serve you. Two structural things about the catalog itself are worth knowing before you build on it.

  • Unlisted models are priced by size, not by name. Anything Fireworks hosts that is not on the individual rate card falls into a bracket: under 4B parameters at $0.10 per million, 4B to 16B at $0.20, above 16B at $0.90, and mixture-of-experts variants between $0.50 and $1.20. That is unusually transparent and it means a niche model has a knowable price before you deploy it.
  • There are no first-party frontier models. You cannot buy Claude Opus 5 or gpt-5.6-sol from Fireworks the way you buy them from Anthropic and OpenAI. If your application needs a frontier model for the hard 20 percent of calls, Fireworks is one of two providers you will hold keys for, not the only one.

That second point is the honest limit of the whole open-model serving tier, not a Fireworks-specific failing. It is also why a gateway sits in front of most production setups. See what an LLM gateway does if you are about to hand-roll that routing.

Speed: the claims and the evidence

Fireworks markets on latency and publishes customer numbers rather than synthetic benchmarks. Notion reports moving from roughly 2 seconds to 350 milliseconds after fine-tuning on the platform, and Quora reports a 3x response-time speedup after migrating. Named users include Cursor, Vercel, Notion, Sourcegraph, UiPath, Quora, Genspark, and Cresta.

The tier structure is more informative than the marketing. Fireworks charging a 25 to 50 percent premium for Priority and Fast is an admission that Standard capacity is contended, which is true of every serverless provider and rarely stated. If your workload is latency sensitive, budget for Priority from the start rather than discovering Standard queueing under load.

Developer experience

Pointing an existing client at Fireworks is a base-URL swap. The example below is the shape most coding agents and SDKs want.

OpenAI-compatible call against Fireworks.
curl https://api.fireworks.ai/inference/v1/chat/completions \
  -H "Authorization: Bearer $FIREWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "accounts/fireworks/models/<model-id>",
    "messages": [{"role": "user", "content": "Explain this stack trace."}]
  }'
Environment variables for a tool that expects OpenAI.
export OPENAI_BASE_URL="https://api.fireworks.ai/inference/v1"
export OPENAI_API_KEY="$FIREWORKS_API_KEY"

Model identifiers are namespaced (accounts/fireworks/models/<name>), which is more verbose than the bare slugs most providers use and occasionally trips up clients that validate model names against a hardcoded list. Copy the exact id from the model page rather than guessing it, and check your gateway or agent handles a slash-heavy model id before you commit.

Managed training is the other developer-facing surface worth knowing about: it bills per million training tokens rather than per GPU hour, and it deploys the resulting checkpoint automatically. LoRA supervised fine-tuning on a model up to 16B is $0.50 per million training tokens; DPO is double that; full-parameter runs are double again. For a small adapter that is a few dollars, which is a very different proposition from renting a GPU for a day.

Fireworks against Together and Baseten

These three are the closest comparison set, and on list price they are nearly indistinguishable. The differences that remain are structural rather than numeric.

The three open-model shops compared, August 2026.
FireworksTogetherBaseten
GLM 5.2 per million$1.40 / $4.40$1.40 / $4.40$1.40 / $4.40
Kimi K3 per million$3.00 / $15.00$3.00 / $15.00$3.00 / $15.00
DeepSeek V4 Pro$1.74 / $3.48$1.32 / $3.96$1.74 / $3.48
GLM 5.2 cached input$0.14$0.26$0.14
Speed tiers sold separatelyYes, threeNoNo
Media modelsImage, audioImage, video, audioNo
Own GPU rental$7.00/hr H100$3.99/hr H100 cluster$6.50/hr H100 effective
Batch discount50%Up to 50%Not published
Free credit$1 onceNone publishedUnspecified signup credit

Read the cached-input row rather than the base row if you run agents. Fireworks and Baseten both read GLM 5.2 cached input at $0.14, a tenth of base; Together charges $0.26, nearly a fifth. On a workload where 80 percent of input is cached repo context, that single line is worth more than any other difference on the table.

Together wins the DeepSeek V4 Pro comparison on input and loses it on output, so which of the three is cheapest genuinely depends on your token ratio. There is no universally cheapest option among them, which is a more useful conclusion than a ranking.

Where Fireworks is the wrong choice

  • You want the cheapest tokens. Fireworks is at market rate, not below it. DeepInfra was cheaper on every comparable model we checked in August 2026, including $0.09 / $0.18 against Fireworks' $0.14 / $0.28 on DeepSeek V4 Flash.
  • You want to rent raw GPUs. At $7.00 per H100 hour (rising to $8.00 on 1 September 2026), Fireworks on-demand is roughly double Modal's effective rate and triple DeepInfra's $2.20. Fireworks GPUs are priced as a convenience attached to the platform, not as a compute market.
  • You need a frontier model as your primary. Go to the lab, or to an aggregator that can reach both.
  • You want a generous evaluation budget. $1 in credits runs out during your first serious test.

Questions people ask

What is Fireworks AI?

Fireworks AI is an inference platform that serves open-weight models over OpenAI-compatible and Anthropic-compatible APIs, billed per million tokens, alongside on-demand GPU rental and managed fine-tuning. Its catalog covers DeepSeek, Kimi, GLM, Qwen, MiniMax, gpt-oss, and Nemotron families plus image and audio models.

What products and services does Fireworks.ai offer?

Four: serverless inference billed per token with Standard, Priority, and Fast tiers; on-demand dedicated GPUs from H100 to GB300 billed by the second; reserved capacity with negotiated quota; and managed training that bills per million training tokens and auto-deploys the checkpoint. It also serves embeddings, image models, and Whisper transcription.

What models does Fireworks AI support?

As of August 2026 the individually priced list includes Kimi K3, K2.7 Code and K2.6, DeepSeek V4 Pro and Flash, GLM 5.1 and 5.2, Qwen 3.7 Plus and 3.8 Max, MiniMax M3 and M2.7, gpt-oss 120B and 20B, and NVIDIA Nemotron variants. Models not individually listed are priced by parameter count instead, from $0.10 per million under 4B up to $0.90 above 16B.

Is Fireworks AI faster than other providers?

It sells speed as a tier rather than claiming a single number, which is more useful. Priority runs about 1.25x the Standard price and Fast about 1.5x for the same model. Published customer results include Notion cutting latency from around 2 seconds to 350ms and Quora reporting a 3x speedup, but both involved other changes. For an apples-to-apples comparison use the Artificial Analysis provider leaderboard.

Does Fireworks AI serve Claude or GPT models?

Not as first-party models. Fireworks serves open weights, including OpenAI's open gpt-oss 120B and 20B releases, but you cannot buy Claude Opus 5 or gpt-5.6-sol from it the way you can from Anthropic and OpenAI directly. Teams that need both typically hold two keys or put a gateway in front.

Is Fireworks AI free to try?

You get $1 in credits and then postpaid per-token billing once a payment method is attached. There is no ongoing free tier. That is enough to verify an integration works and not enough to run an evaluation, so plan to spend a little to test properly.

Sources

Every figure above was read from these pages on August 2026. Vendors reprice without notice; if you find a stale number, tell us.

  1. Fireworks AI product surfaces, customers, case-study latency figures
  2. Fireworks pricing GPU hourly rates, fine-tuning, embeddings
  3. Fireworks serverless pricing Standard, Priority, Fast per-model rates and size brackets
  4. Artificial Analysis provider leaderboard independent throughput and TTFT measurements
  5. DeepInfra pricing comparison rates for the same models
Try it

Run every agent
from one place.

Continuum drives Claude Code, Codex, and peers under your own subscriptions, with live quota gauges and spend by repo. The app is free. Mac is stable; Windows and Linux desktop are beta.

free app · your subscriptions · local-first