Quick Answer
DeepSeek V4 Pro is the "planner" in the V4 family, running on an estimated 685B-parameter sparse MoE architecture with MIT licensing and a 1M-token context window. Current promotional pricing is $0.435 per million input and $0.87 per million output — regular pricing will be $1.74/$3.48 once the promo ends. It is the cost-efficient architect for multi-file refactors and system design, best paired with V4 Flash as the executor. Together they form the most cost-effective two-tier coding stack of 2026: V4 Pro plans the work, V4 Flash executes it at 3x lower cost. This article tracks the latest V4 Pro developments — pricing, features, benchmarks, tooling, and comparisons against GPT-5.6 Sol and Claude Opus 4.8. You can access V4 Pro through TeamoRouter alongside Claude, GPT, Gemini, and Kimi with a single key.
V4 Pro vs V4 Flash: Planner and Executor
DeepSeek positions the two V4 models with a clear division of labor:
| Role | Model | Price (in/out per M) | Best at |
|---|---|---|---|
| Planner | V4 Pro | $0.435/$0.87 (promo) | Architecture, multi-file refactors, hard reasoning |
| Executor | V4 Flash | $0.14/$0.28 | Code generation, test writing, agent loops |
V4 Pro has a substantially larger expert pool and allocates more compute per token. On multi-file reasoning and system design it is meaningfully stronger than Flash. The recommended hybrid workflow:
V4 Pro → plan architecture, review design (~20% of tokens)
V4 Flash → generate files, write tests, fix lint (~70% of tokens)
V4 Pro → final review pass (~10% of tokens)
This hybrid cuts API spend by roughly 64% versus running V4 Pro everywhere, with near-identical output quality on the execution layer.
Current Pricing: The Promo Window
| Tier | Input (per M) | Output (per M) |
|---|---|---|
| Promotional (current) | $0.435 | $0.87 |
| Regular (post-promo) | $1.74 | $3.48 |
There is no published end date for the promo. Even at regular pricing, V4 Pro undercuts every comparable model:
| Model | Input | Output | Premium over V4 Pro (regular) |
|---|---|---|---|
| GPT-5.6 Sol | $5.00 | $30.00 | 2.9x / 8.6x |
| Claude Opus 4.8 | $5.00 | $25.00 | 2.9x / 7.2x |
| Claude Sonnet 4.6 | $3.00 | $15.00 | 1.7x / 4.3x |
| V4 Pro (regular) | $1.74 | $3.48 | — |
Peak-Hour Policy
DeepSeek announced that during Beijing peak hours (9:00-12:00, 14:00-18:00 CST), prices rise to 2x the base rate. As of early August 2026, this had not taken effect, but when it does, teams should schedule batch workloads outside peak hours or configure automatic fallback to V4 Flash.
API Access
V4 Pro is fully OpenAI-compatible. Any OpenAI client works by changing the base_url.
from openai import OpenAI
client = OpenAI(
api_key="sk-your-deepseek-key",
base_url="https://api.deepseek.com",
)
response = client.chat.completions.create(
model="deepseek-v4-pro",
messages=[
{"role": "user", "content": "Design a rate-limiting middleware supporting sliding window, token bucket, and fixed window strategies."},
],
max_tokens=4096,
)
Via TeamoRouter
One key, one endpoint, access to V4 Pro alongside every other major model:
from openai import OpenAI
client = OpenAI(
api_key="tr-your-key-here",
base_url="https://api.teamorouter.com/v1",
)
response = client.chat.completions.create(
model="deepseek-v4-pro",
messages=[
{"role": "user", "content": "Architect a multi-tenant database schema with isolation levels, indexing strategy, and migration paths."},
],
)
curl https://api.teamorouter.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer tr-your-key-here" \
-d '{
"model": "deepseek-v4-pro",
"messages": [{"role": "user", "content": "Explain trade-offs between microservices and modular monolith for an early-stage startup."}],
"max_tokens": 2048
}'
Feature Updates
Responses API (Expected Early August 2026)
As of the July 31 launch, V4 Flash was the only DeepSeek model with Responses API support. V4 Pro support was expected in early August 2026, which would make it available in the client.responses.create() flow for agent frameworks.
Anthropic-Compatible Endpoint
V4 Pro is also accessible at https://api.deepseek.com/anthropic, making it usable with Claude Code, Cline, and other Anthropic-first tooling as a cheaper secondary planning model.
Thinking Controls
V4 Pro supports thinking and reasoning_effort parameters. When thinking is on, temperature and top_p are ignored. For planning tasks, leave thinking on — reasoning depth is what you are paying for.
Benchmark Standing
| Benchmark | V4 Pro (reported) | What it measures |
|---|---|---|
| SWE-bench Verified | 80.6 | Real-world GitHub issue resolution |
| DSBench-FullStack | above Flash (68.7) | Full-stack development |
| Overall agent score | ~25+ (est.) | Composite agent capability |
SWE-bench Verified at 80.6 is the headline — it places V4 Pro in the top tier of coding models, ahead of most competitors on this specific benchmark.
V4 Pro vs Frontier Models
V4 Pro vs Claude Opus 4.8
| Dimension | V4 Pro | Opus 4.8 |
|---|---|---|
| Output price | $0.87–$3.48 | $25.00 |
| Context | 1M tokens | 200K+ |
| Vision | No | Yes |
| Architecture quality | Strong | Very strong |
| License | MIT | Proprietary |
V4 Pro costs roughly 7-29x less on output than Opus. On text-only architecture tasks, it is close in quality. The main gap is vision — if your planning involves screenshots or diagrams, Opus (or Sol) is necessary.
V4 Pro vs GPT-5.6 Sol
Sol is stronger overall (TerminalBench 88.8 std / 91.9 Ultra) but costs $30/M output vs V4 Pro's $0.87 (promo) — a 34x difference. For text-only planning, V4 Pro delivers most of Sol's reasoning quality at a fraction of the cost.
The 2026 Stack
Planning/architecture → DeepSeek V4 Pro (cost-efficient depth)
Code generation/tests → DeepSeek V4 Flash (cheap, fast, high volume)
Vision tasks → GPT-5.6 Sol or Claude (only when needed)
China Access Situation
For developers in China, DeepSeek's models are accessible directly without a VPN — api.deepseek.com works natively. Accessing Claude and GPT typically requires both a VPN and an international credit card. TeamoRouter solves this by bundling DeepSeek, Claude, GPT, Gemini, and Kimi behind a single endpoint with Alipay and WeChat Pay support, removing both barriers for teams that want to mix Chinese and international models. V4 Pro is available through DeepSeek directly, TeamoRouter, and various third-party gateways.
Tooling Ecosystem
TeamoRouter Agentic Routing
For automatic model selection across a multi-model stack:
rules:
- name: architecture-planning
match: task_type in ["plan", "design"] or complexity == "high"
model: deepseek-v4-pro
- name: code-execution
match: task_type in ["code_edit", "test_write"]
model: deepseek-v4-flash
- name: vision-tasks
match: has_image == true
model: claude-opus-4-8
- name: fallback
match: "*"
model: deepseek-v4-flash
One key, one dashboard, automatic routing, and Alipay/WeChat/international card billing.
Codex, Cline, and Claude Code
V4 Pro has official Codex integration. Cline and Claude Code can use it through the Anthropic-compatible endpoint or TeamoRouter. Many teams run V4 Pro as a secondary planning model in Claude Code — Claude for interactive sessions, V4 Pro for batch planning at lower cost.
Migration from Legacy IDs
DeepSeek deprecated deepseek-chat and deepseek-reasoner on July 24, 2026:
| Legacy ID | Replacement |
|---|---|
deepseek-chat |
deepseek-v4-flash or deepseek-v4-pro |
deepseek-reasoner |
deepseek-v4-flash (thinking mode on) |
The Bottom Line
DeepSeek V4 Pro at $0.435/$0.87 promo pricing is the most cost-efficient architecture-grade coding model of 2026. It competes with Claude Opus 4.8 and GPT-5.6 Sol on text-only planning at 7-34x lower cost. Pair it with V4 Flash for execution, keep a vision model on standby for the 5-10% of tasks that need images, and you have a production-grade multi-model setup for a fraction of an all-flagship stack. TeamoRouter brings all these models together on one key with automatic routing and Chinese payment support.
Try DeepSeek V4 Pro on TeamoRouter — one key, 50+ models, Alipay and WeChat supported.
FAQ
What is the current price of DeepSeek V4 Pro?
Promotional: $0.435/M input, $0.87/M output. Regular: $1.74/$3.48. Cache-hit input is significantly cheaper.
How does V4 Pro compare to V4 Flash?
V4 Pro is the stronger planner for multi-file refactors and architecture. V4 Flash is the cheaper, faster executor. Ideal setup: Pro for ~20-30% of tokens (planning/review), Flash for the rest.
Does V4 Pro support vision?
No. Both V4 Pro and V4 Flash are text-only. Use GPT-5.6 Sol or Claude for image input.
Is V4 Pro open source?
Weights are MIT-licensed for commercial use. DeepSeek's hosted API is the primary distribution path.
Does V4 Pro have Responses API support?
Expected in early August 2026. As of the July 31 V4 Flash launch, Flash was the only DeepSeek model with native Responses API.
What is the context window?
1M tokens — large enough to process an entire mid-size repository in one call.
Can I use V4 Pro with Claude Code or Cline?
Yes, through the Anthropic-compatible endpoint or TeamoRouter.
How does V4 Pro compare to Claude Opus 4.8?
On text-only architecture tasks, V4 Pro is close to Opus in quality at 7-29x lower cost. Opus is stronger on vision and ecosystem maturity.
When does peak-hour pricing take effect?
Announced but not yet in effect as of early August 2026. Schedule batch workloads outside Beijing peak hours when it does.