Model Review

DeepSeek V4 Review: We Ran Both Tiers (Flash 9/9, Pro 8/9)

We put both DeepSeek V4 tiers through our executed nine-task Python benchmark. V4-Flash scored 9/9 at a measured $0.13 per 1,000 tasks. V4-Pro scored 8/9 at $0.74. The cheaper model scored higher and cost 5.7x less. That result is real and it is narrow — nine short Python functions are exactly the bounded work a small model handles well, and V4-Pro exists for harder work our harness never touches. The rest of this review is the honest version of everything else: what V4 really costs (many "DeepSeek V4 pricing" posts online quote a number roughly 4x too high), what the vendor benchmarks do and do not show, and which tier to reach for.

DeepSeek V4 review title card - open weights, 1.6T MoE, 1M context, and the official $0.435 / $0.87 price

The short version

How this review is sourced. The scores, costs, latencies and reasoning-token counts in the measured section are our own, produced by the harness described in how we produced those numbers and on our methodology page. Everything else is third-party and labelled: specs and pricing from DeepSeek's own API pricing page and the Hugging Face model card; benchmark tables marked DeepSeek-reported are DeepSeek's; independent SWE-bench figures come from vals.ai.

What DeepSeek V4 is

DeepSeek V4 shipped on April 24, 2026 as a two-model release, both open-weights under the MIT license — meaning you can download, self-host, and fine-tune them for commercial use with no strings attached. Architecturally both are sparse Mixture-of-Experts models with a hybrid-attention design built for long context.

SpecV4-ProV4-Flash
Parameters (total / active)1.6T / 49B284B / 13B
ArchitectureMoE + hybrid attentionMoE
Context window1M tokens1M tokens
Max output384K tokens384K tokens
LicenseMIT (open weights)MIT (open weights)
ReleasedApr 24, 2026Apr 24, 2026

What we measured: Flash 9/9, Pro 8/9

Most DeepSeek V4 reviews restate the launch post. This section reports a run. Both tiers went through the same executed nine-task Python harness — the model gets a signature and a prose spec, returns code, and the code is executed against assertions it never sees.

V4-Flash scored 9/9. V4-Pro scored 8/9. The cheaper tier scored higher than the flagship, and it did so at $0.13 per 1,000 tasks against $0.74 — 5.7x less money for one more passing task. On this workload, paying up for Pro bought a worse result.

The one task V4-Pro dropped was parse_csv_line, a CSV-line parser with quoted fields and escaped quotes. It is the fiddliest spec-following task in the set — the one where the answer depends on reading the specification exactly rather than recognising a familiar algorithm. Of the 23 models we have run, only three dropped any task at all, and V4-Pro is one of them. V4-Flash, the only other DeepSeek model we have run, dropped none.

ModelScoreMeasured cost / 1k tasksMean latencyReasoning tokens / taskMissedPriced at
Qwen3 Coder Next9/9$0.107.0 s02026-07-17
DeepSeek V4-Flash9/9$0.1314.5 s5682026-07-17
DeepSeek V4-Pro8/9$0.7418.2 s732parse_csv_line2026-07-17
Claude Haiku 4.59/9$0.943.7 s02026-07-29
Claude Opus 4.89/9$4.056.1 s02026-07-17

Our own run. Both DeepSeek tiers plus three reference models from the same harness. Cost is the token counts the API reported multiplied by list price on the date shown — a measured cost, not a vendor invoice.

DeepSeek V4: the cheaper tier scored higher and cost 5.7x lessMeasured cost per 1,000 tasks. Nine executed Python tasks, temperature 0, one scored attempt each.Qwen3 Coder Next$0.10 · 9/9DeepSeek V4-Flash$0.13 · 9/9DeepSeek V4-Pro$0.74 · 8/9Claude Haiku 4.5$0.94 · 9/9One scale throughout: 620 px per dollar. Cost is measured token counts multiplied by list price on the date in the table above.
Chart: DataLLM Lab. Measured cost per 1,000 tasks on our executed nine-task Python benchmark, with each model's score. Method: our methodology. Full run: the coding cost benchmark.

The caveat, right next to the finding

Nine short, self-contained Python functions are exactly the bounded task a smaller model handles well. They are also exactly not the workload V4-Pro exists for. DeepSeek sells Pro for the hardest reasoning and long-horizon work; our harness is single-turn, Python-only, and every task fits in a few hundred tokens. A 9/9 from Flash here is not evidence it will match Pro on a 200,000-token refactor. It is evidence that nine short functions do not separate them — and that on work shaped like nine short functions, the premium tier is money spent for nothing we could detect.

The honest reading is therefore narrow and still useful: for bounded, clearly specified code generation, route to V4-Flash and keep V4-Pro for the cases Flash actually fails. That is the same routing advice the Pro vs Flash section gives, now with a measurement behind it instead of an assumption.

Both tiers are slow, and the reasoning tokens explain it

The other thing the run shows is latency. V4-Flash averaged 14.5 s per task and V4-Pro 18.2 s — fourth- and second-slowest of the 23 models we have run on this harness. The mechanism is visible in the same table: V4-Flash emitted 568 reasoning tokens per task and V4-Pro 732, the third-highest count of the 23. Reasoning tokens bill at the output rate and take wall-clock time to produce, so they show up twice — once on the invoice and once on the clock.

The contrast cases are instructive. Qwen3 Coder Next also scored 9/9, at $0.10 and 7.0 s with zero reasoning tokens — cheaper than V4-Flash and twice as fast, on the same nine tasks. Claude Haiku 4.5 scored 9/9 at $0.94 and 3.7 s, also at zero reasoning tokens: 7.2x V4-Flash's cost, but each answer arrives in about a quarter of the time. If a human is waiting for the output, that trade is not obviously in DeepSeek's favour. If the work is batch, it is.

Our measured $0.13 was computed at an older price. DeepSeek V4-Flash's list rate moved from $0.09 / $0.18 to $0.14 / $0.28 per 1M tokens between 2026-07-17 and 2026-07-29 — up about 56%. Our run was priced at the 2026-07-17 rate. Both input and output moved by the same factor (1.556), so the same token counts on the same nine tasks reprice to about $0.20 per 1,000 tasks at 2026-07-29 rates. We did not re-run it; we re-priced it. V4-Pro's rate did not move in that window, so its $0.74 stands — which narrows the Flash-to-Pro gap from 5.7x to about 3.7x, and changes nothing about the score column. The full diff, and why we date every price, is in LLM price volatility.

How we produced those numbers

Nine executed Python tasks: two_sum, valid_parentheses, merge_intervals, roman_to_int, lcs_len, flatten, top_k_words, token_bucket, parse_csv_line.

The model receives a function signature and a prose spec. It never sees the assertions. The returned code runs against hidden assertions in an isolated python3 -I subprocess with a 12-second timeout. Every assertion passes or the task fails — no partial credit, no human grader, no LLM judge. Temperature 0, max_tokens 4000, one scored attempt per task; the harness retries only on an API error, never on a wrong answer, which is why V4-Pro's miss stayed a miss.

Calls go through OpenRouter's OpenAI-compatible endpoint, deliberately not through the DataLLM Lab gateway. Nothing on this page depends on our infrastructure, and you do not have to be our customer to reproduce it.

Cost is derived, not invoiced. It is the token counts the API reported multiplied by that model's list price on a stated date. Both DeepSeek tiers ran in our original 13-model sweep and are priced at 2026-07-17 rates; ten more models ran later on the same harness under the same settings, which brings the total to 23. Where this page says 23 models, that is the combined set — the core sweep was and remains 13.

What the harness does not measure: long-context reasoning, multi-file refactoring, agentic or multi-turn tool use, non-Python work, vision, translation quality, and anything run locally. V4's headline 1M-token context is completely untouched by this test. So is every claim in DeepSeek's own benchmark table. Nine tasks is nine data points — we did not run it twice, did not vary the prompts, and did not buy any model a retry. A known artefact: the 4,000-token ceiling can truncate a very verbose answer, and a truncated answer scores as a miss.

Benchmarks, honestly

Here are DeepSeek's published numbers for V4-Pro. These are vendor-reported — at the time of writing, independent leaderboards had not posted a clean V4 SWE-bench Verified result, so treat the table as DeepSeek's own measurement, not an audited one.

Benchmark (DeepSeek-reported)V4-Pro
SWE-bench Verified80.6
SWE-bench Pro55.4
LiveCodeBench93.5
Codeforces (rating)3206
GPQA Diamond90.1
MMLU-Pro87.5

The honest read: on real-world software engineering (SWE-bench Verified, which patches actual GitHub issues), V4-Pro's reported 80.6% sits just behind the independently-measured leaders — Claude Opus 4.7 at 82.0% and GPT-5.5 at 82.6% on vals.ai. On competitive / algorithmic coding (LiveCodeBench, Codeforces), it's at or near the top of any model. So: a superb problem-solver, a strong-but-not-#1 bug-fixer — at a fraction of the price.

Note what this table cannot tell you, and what ours can. These are Pro's scores; DeepSeek did not publish a matching Flash row, so nothing here helps you choose between the tiers. That is precisely the gap our run fills — and it filled it in the direction the parameter counts do not predict.

The price everyone gets wrong

This is the single most important section for anyone budgeting, because the SERP is full of the wrong number. DeepSeek's official API pricing for V4 is remarkably low. Several popular review sites instead quote a third-party host's rate (around $1.74 / $3.48) as if it were DeepSeek's — roughly 4x too high.

Per 1M tokensOfficial DeepSeek APICache-hit inputTypical 3rd-party host
V4-Pro input$0.435$0.0036~$1.74
V4-Pro output$0.87~$3.48
V4-Flash input$0.14$0.0028varies
V4-Flash output$0.28varies

Official figures from DeepSeek's API pricing page. The V4-Flash row is its post-increase rate, re-checked against the live listing on 2026-07-29; it was $0.09 / $0.18 on 2026-07-17. Third-party host rates vary by provider; always check whose price you're quoted, and on what date.

Why this matters. If you budget your project on the $1.74/$3.48 figure, you'll think DeepSeek V4 costs as much as a mid-tier model — when it's actually one of the cheapest frontier-class options available. The cache-hit input price (about $0.0036/M for Pro) is the other under-reported lever: for agentic or repeated-context workloads where most input is cached, your real input cost can be nearly free. And the third under-reported thing is time: a price quoted without a date is not a price. V4-Flash's own rate rose 56% in twelve days.

What it actually costs

Numbers per million tokens are abstract, so here's a concrete job: a 200K-token codebase audit (≈180K tokens of code in, 20K of analysis out). Same task, three models:

ModelInput (180K)Output (20K)Total
DeepSeek V4-Flash$0.025$0.006~$0.03
DeepSeek V4-Pro$0.078$0.017~$0.10
Claude Opus 4.7$0.90$0.50~$1.40

That's the whole story in one table: V4-Pro runs the job for about 1/15th of Opus 4.7's cost, and Flash for roughly 1/45th — before you even apply cache discounts. For high-volume work (CI checks, bulk refactors, log analysis), the gap compounds fast.

Arithmetic on list prices, at the 2026-07-29 V4-Flash rate. This is a modelled job, not a measured one — the measured figures on this page are the per-1,000-task numbers in the measured section, and they come from executed runs, not from an assumed token split.

Same 200K-token coding job, by model Total cost — 180K input + 20K output tokensClaude Opus 4.7$1.40DeepSeek V4-Pro$0.10DeepSeek V4-Flash$0.03
Chart: DataLLM Lab — modelled total cost of one 200K-token coding job (180K in / 20K out) by model, on each provider's list price. One scale throughout: 190 px per dollar.

Pro vs Flash: which to use

V4-Pro The flagship

  • 1.6T / 49B active. The vendor benchmark numbers above are Pro's.
  • Our result: 8/9, $0.74 per 1,000 tasks, 18.2 s — it missed parse_csv_line.
  • Reach for it on the hardest reasoning and long-horizon work our harness does not touch, not on bounded function-level jobs.
  • $0.435 / $0.87 per 1M tokens.

V4-Flash The workhorse

  • 284B / 13B active — cheaper than Pro and, on our nine tasks, more accurate.
  • Our result: 9/9, $0.13 per 1,000 tasks, 14.5 s (about $0.20 repriced at 2026-07-29 rates).
  • Use for high-volume, well-scoped tasks: routine edits, classification, extraction, first-pass drafts.
  • $0.14 / $0.28 — among the cheapest capable models anywhere.

A good default: route to Flash first, escalate to Pro only when Flash's answer fails a check. That was already the sensible pattern on price alone; our run says it is also the better pattern on accuracy, at least on bounded work. The full tier-by-tier breakdown is in DeepSeek V4-Pro vs V4-Flash, and the standalone Flash write-up is here.

Neither tier is the automatic pick in the cheap bracket, though. On the same nine tasks Qwen3 Coder Next scored 9/9 at $0.10 in 7.0 s — cheaper and twice as fast as V4-Flash. If latency matters at all, start there; the cheap coding model roundup compares the whole sub-$1 tier.

Where it falls short

DeepSeek V4 vs Opus 4.7, GPT-5.5 & Kimi

ModelSWE-bench VerifiedPrice (in / out)Our nine-task harnessOpen weights?
DeepSeek V4-Pro80.6 (vendor)$0.435 / $0.878/9 · $0.74 / 1kYes (MIT)
DeepSeek V4-Flashnot published by vendor$0.14 / $0.289/9 · $0.13 / 1kYes (MIT)
Claude Opus 4.782.0 (vals.ai)$5 / $25not testedNo
GPT-5.582.6 (vals.ai)$5 / $309/9 · $8.83 / 1kNo
Kimi K2.680.2 (indep.)$0.65 / $2.72not tested (K2.7 Code: 9/9 · $1.34)Modified MIT

SWE-bench figures are vendor-reported or from vals.ai as marked. List prices captured 2026-07-29. The harness column is ours — measured cost per 1,000 tasks, priced 2026-07-17 for every row shown, and blank where we have not run the model.

The takeaway: the closed frontier (Opus 4.7, GPT-5.5) still edges DeepSeek on real-world bug-fixing, but by single-digit points at roughly 11x V4-Pro's input rate and 29-35x its output rate — and on our own nine bounded tasks, GPT-5.5 bought its identical 9/9 for $8.83 against V4-Flash's $0.13, a 68x gap for the same score. Among open-weights models, V4 is the value leader for raw capability, with Kimi close behind and already callable on the gateway. For a fuller ranking, see our best coding LLM guide, or the four-way disagreement in the AI coding ranking.

Compare DeepSeek against the frontier on your own code

DeepSeek V3.2, Kimi, Qwen3 Coder Next, Claude Opus 4.7 and 300+ more — one OpenAI-compatible key, live price comparison, swap models with a one-line change.

How to use DeepSeek V4 today

V4 isn't in the DataLLM Lab catalog yet (the gateway carries DeepSeek V3.2, listed at $0.27 / $0.40 per 1M as captured 2026-07-29). You can call V4 directly via DeepSeek's API, through OpenRouter — which is how our run was made — or self-host the open weights. All of these speak the OpenAI format, so it's a one-line model swap:

from openai import OpenAI

# DeepSeek's own endpoint (OpenAI-compatible)
client = OpenAI(base_url="https://api.deepseek.com/v1", api_key="$DEEPSEEK_API_KEY")

resp = client.chat.completions.create(
    model="deepseek-v4-flash",          # the tier that scored 9/9 in our run
    messages=[{"role": "user", "content": "Review this module for bugs..."}],
)
print(resp.choices[0].message.content)

Already routing through a gateway? When V4 lands on DataLLM Lab you'll only change the model id — same key, same code.

The verdict

DeepSeek V4 is the clearest "value frontier" release of 2026: open weights, a true 1M context, top-tier algorithmic coding on vendor numbers, and real-world coding within a couple of points of the closed leaders — at roughly a tenth of their input rate and a thirtieth of their output rate. What our own run adds is a correction to the obvious assumption about which tier to buy. On nine executed Python tasks, V4-Flash went 9/9 at $0.13 per 1,000 tasks and V4-Pro went 8/9 at $0.74. The premium tier was 5.7x the money and one task worse.

Take that for what it is. It says the flagship's price does not buy anything measurable on bounded, well-specified code generation — not that it fails on the long-context, multi-step work we never tested. So: default to Flash, keep Pro for the cases Flash actually misses, price both against the date on the rate card, and if latency matters look at the zero-reasoning-token coders before either. And whichever you pick, budget against the real price — $0.435/$0.87 for Pro, $0.14/$0.28 for Flash as of 2026-07-29 — not the inflated third-party rate the SERP keeps repeating.

FAQ

What did DataLLM Lab actually measure on DeepSeek V4?

Nine executed Python tasks, single-turn, temperature 0, one scored attempt each, run through OpenRouter's OpenAI-compatible endpoint rather than our own gateway. DeepSeek V4-Flash scored 9/9 at a measured $0.13 per 1,000 tasks, 14.5 s mean latency, 568 reasoning tokens per task. DeepSeek V4-Pro scored 8/9 at $0.74, 18.2 s, 732 reasoning tokens, missing parse_csv_line. Both are priced at 2026-07-17 list rates. Cost is measured token counts multiplied by list price, not a vendor invoice.

Is V4-Flash or V4-Pro better for coding?

On our nine tasks, Flash — 9/9 against Pro's 8/9, at 5.7x less money and 14.5 s per task against 18.2 s. Pro missed the CSV-line parser, the fiddliest spec-following task in the set. That result is bounded: nine short functions are the workload a smaller model handles well, and Pro is built for harder problems our harness never reaches. Use Flash by default, escalate to Pro only when Flash's answer fails a check.

How much does the DeepSeek V4 API cost?

DeepSeek's official API price for V4-Pro is $0.435/M input (cache-miss) and $0.87/M output, dropping to about $0.0036/M on cache hits. V4-Flash is $0.14 input / $0.28 output as of 2026-07-29 — up from $0.09 / $0.18 on 2026-07-17, a 56% rise in twelve days. Some third-party hosts charge around $1.74/$3.48 for Pro, roughly 4x the official rate, which several review sites mistakenly quote as the headline price.

Why is DeepSeek V4 slow in your test?

Because both tiers reason before answering. V4-Flash emitted 568 reasoning tokens per task and V4-Pro 732, which is the third-highest count of the 23 models we have run. Reasoning tokens bill at the output rate and take wall-clock time to produce, so they cost you twice. For comparison, Qwen3 Coder Next scored the same 9/9 at $0.10 and 7.0 s with zero reasoning tokens, and Claude Haiku 4.5 scored 9/9 at $0.94 in 3.7 s, also at zero.

Is DeepSeek V4 better than Claude Opus 4.7 or GPT-5.5?

On real-world software engineering they're close: DeepSeek reports SWE-bench Verified 80.6% for V4-Pro, versus ~82.0% (Opus 4.7) and ~82.6% (GPT-5.5) on the independent vals.ai board. DeepSeek leads on competitive coding (LiveCodeBench, Codeforces). We have not run Opus 4.7. We have run GPT-5.5: it scored 9/9 on our nine tasks at $8.83 per 1,000 tasks, against V4-Flash's 9/9 at $0.13. Same score, 68x the cost, on bounded work.

Is DeepSeek V4 open source?

Yes — both V4-Pro and V4-Flash are released as open weights under the MIT license, so you can download, self-host, and fine-tune them commercially. The weights are on Hugging Face. We have not tested any locally-run deployment; every number of ours on this page came from an API-hosted call.

Written by

Founder of DataLLM Lab, the unified LLM gateway. Kevin tests models the boring way — same prompts, real costs, unedited outputs — and writes up what the runs actually show. Articles are drafted with AI assistance and published under his name; every first-party number comes from an executed run.

One API for every model

One API, every model.

Get a single API key for Claude Opus 4.7, GPT-5.4, and 300+ more — with automatic price comparison and routing to the best model for every request.