codingsalt

DeepSeek V4 Flash Exits Preview: Pricing, Benchmarks

DeepSeek V4 Flash left preview on July 31, 2026 as build 0731, keeping $0.14/$0.28 pricing but posting new agent benchmarks. Here is what changed.

CodingSalt Editorial4 min read

DeepSeek moved its V4 Flash model out of preview on July 31, 2026, shipping it as build DeepSeek-V4-Flash-0731 through the same deepseek-v4-flash API string. Pricing holds at $0.14 per million input tokens ($0.0028 with a cache hit) and $0.28 per million output tokens — unchanged from the preview — while the model posts sharply higher agent-benchmark scores after a full post-training redo.

What actually changed

DeepSeek's own changelog is explicit that this is not a new model: "DeepSeek-V4-Flash-0731 keeps the same model architecture and size as DeepSeek-V4-Flash-Preview, and was only re-post-trained." The 284-billion-parameter Mixture-of-Experts architecture, its ~13-billion active parameters per token, and the 1-million-token context window all carry over unchanged. What DeepSeek retrained is tool-calling behavior, coding workflows and agentic reasoning — the parts of a model that determine how well it functions inside an autonomous coding loop, not how big it is.

Two API-level additions ship alongside the retrain: native support for the Responses API format, and adaptations specifically for running the model inside Codex-style agent harnesses. Existing integrations that already call deepseek-v4-flash pick up the new behavior automatically — DeepSeek did not introduce a new model identifier, so there is no migration step for teams already on the preview build.

Pricing stays flat, for now

Item Price per 1M tokens
Input (cache miss) $0.14
Input (cache hit) $0.0028
Output $0.28

DeepSeek's pricing documentation also discloses a planned 2x multiplier during Beijing-time peak hours (09:00–12:00 and 14:00–18:00, UTC+8), but the effective date is "subject to official announcement" — it is not active yet. Teams billing against DeepSeek's API today should budget for the flat rate above and watch the changelog for when peak pricing goes live, since it would meaningfully change cost math for workloads that run during Chinese business hours.

For context on where that leaves DeepSeek relative to other vendors, see CodingSalt's AI Model API Pricing Comparison: Gemini 3.5 Flash-Lite was the previous cheapest tier tracked there at $0.30 input / $2.50 output. DeepSeek V4 Flash's $0.14 / $0.28 undercuts that on both legs, and beats it by roughly 9x on output specifically.

Benchmark scores (vendor-reported)

DeepSeek published nine agent-focused benchmark results for the 0731 build. These numbers come directly from DeepSeek's own changelog — they are vendor-reported, not independently reproduced, so treat them as directional rather than final. CodingSalt's guide to reading LLM benchmarks covers why vendor tables in general need outside verification before they drive a purchasing decision.

Benchmark Score
Terminal-Bench 2.1 82.7
Cybergym 76.7
Toolathlon (verified) 70.3
DSBench-FullStack 68.7
DSBench-Hard 59.6
DeepSWE 54.4
NL2Repo 54.2
Agent Last Exam 25.2
Automation Bench (Public) 25.1

DeepSeek says these results "far exceed" DeepSeek-V4-Pro-Preview, the larger model in the same family — an unusual claim worth noting on its own, since it means the smaller, cheaper Flash tier now reportedly outperforms its own larger sibling on agentic tasks pending a matching Pro retrain.

What this means for developers

  • No code changes required. If your integration already targets deepseek-v4-flash, you're running 0731 already; there's no new endpoint or schema to adopt.
  • Re-run your own evals before switching workloads onto it. Vendor benchmarks moved a lot in one retrain; whether that translates to your specific coding-agent or tool-use workload is only knowable by testing against it directly, the same caution that applies to any vendor-reported benchmark table.
  • Budget headroom for peak pricing. The documented but not-yet-active 2x peak multiplier is a cost variable worth tracking if you route meaningful volume through this API, especially for workloads that would otherwise overlap Beijing business hours.
  • Don't expect open weights yet. Teams that need to self-host should keep using the existing April preview weights on Hugging Face until DeepSeek publishes a 0731 checkpoint, if it does at all — API-only releases before a weights drop aren't unusual for this family.

A simple request against the API is unchanged from the preview build:

curl https://api.deepseek.com/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $DEEPSEEK_API_KEY" \
  -d '{
    "model": "deepseek-v4-flash",
    "messages": [{"role": "user", "content": "List three risks in this diff."}]
  }'

For teams already comparing open-weight MoE options, DeepSeek V4 Flash's retrain lands in the same window as Moonshot AI's Kimi K3, another large open-weight MoE model aimed at agentic coding — worth a side-by-side eval if cost per completed task, not just cost per token, is the deciding factor.

Frequently asked questions

What changed in DeepSeek V4 Flash's 0731 release?

DeepSeek re-ran post-training on the same 284-billion-parameter, 13-billion-active MoE architecture, focusing on tool-calling, coding and agentic tasks. The model string stays deepseek-v4-flash and the parameter count, size and 1M-token context window are unchanged from the April preview.

Did DeepSeek change API pricing with this release?

No. Input stays $0.14 per million tokens (cache miss) or $0.0028 per million (cache hit), and output stays $0.28 per million, per DeepSeek's official pricing page. A 2x peak-hours multiplier is documented but its effective date has not been announced.

Can I download DeepSeek V4 Flash's open weights?

Not yet for the 0731 build. As of this release, DeepSeek's Hugging Face model card still describes the April preview and carries its original evaluation tables — the 0731 upgrade is API-only.

How does DeepSeek V4 Flash's price compare to other frontier models?

At $0.14 input / $0.28 output per million tokens, it undercuts every model in CodingSalt's pricing comparison, including Gemini 3.5 Flash-Lite's previous low of $0.30 / $2.50 — roughly a 9x cheaper output rate than Gemini's cheapest tier.

Sources

  1. Models & Pricing (DeepSeek API Docs)
  2. API Updates changelog (DeepSeek API Docs)
4 min read

GPT-5.6 Price Cut: Luna Falls 80%, Terra 20%

OpenAI cut GPT-5.6 Luna pricing 80% and Terra 20% on July 30, 2026, and added a Sol Fast mode. New pricing table and what changes for developers.

  • AI
  • Developer Tools
  • Software Engineering
4 min read

GitHub Stacked Pull Requests: A Developer's Guide

GitHub shipped stacked pull requests to public preview on July 30, 2026. How gh stack works, what changes for reviewers, and how it compares to Graphite.

  • AI
  • Developer Tools
  • Software Engineering