Questions this answers
- How much does DeepSeek V4 Pro cost through an API?
- When should developers use DeepSeek V4 Pro instead of a direct provider account?
- How does TokenLab help compare DeepSeek V4 Pro with related models?
Note on this page: if you arrived here from an older DeepSeek reasoning-model URL, you're in the right place - this guide has been fully rewritten to cover DeepSeek V4 Pro, the current flagship reasoning-and-general-purpose model as of mid-2026. DeepSeek V4 Pro is a 1M-context model priced at $0.435/MTok input and $0.87/MTok output on the official DeepSeek API, with a lighter-weight sibling (V4 Flash) available for high-throughput, lower-cost workloads. This article covers exact pricing across two verified sources, concurrency limits, a migration path from the deprecated deepseek-chat/deepseek-reasoner names, and where V4 Pro fits against GPT-5.5, Claude Sonnet 5, and Gemini 3.5 Flash on cost.
Key Takeaways
- DeepSeek V4 Pro's official API pricing is $0.435/MTok input (cache miss) and $0.87/MTok output, per DeepSeek's own pricing page (observed 2026-07-08).
- DeepSeek V4 Flash is dramatically cheaper: $0.14/MTok input (cache miss) and $0.28/MTok output on the official API - but TokenLab's
deepseek/deepseek-v4-flashroute lists $0.09/$0.18/MTok, a different rate. Always confirm which route you're billed against before estimating cost at scale. - Both V4 Pro and V4 Flash support a 1M-token context window and up to 384K max output tokens.
- Concurrency differs sharply by tier: V4 Flash allows 2,500 concurrent requests; V4 Pro is capped at 500.
- Legacy
deepseek-chatanddeepseek-reasonermodel names are deprecated on 2026-07-24 and will map to V4 Flash modes - update integrations before that date. - Independent AIME, MATH-500, and HumanEval scores for V4 Pro were not present in the sourced material for this article; treat any specific accuracy percentages you see elsewhere as unverified until confirmed against DeepSeek's official model card.
Source Snapshot
| Source | Fact Covered | Observed Date |
|---|---|---|
| DeepSeek API pricing (api-docs.deepseek.com) | V4 Flash/Pro pricing, context, concurrency | 2026-07-08 |
| TokenLab model catalog | deepseek/deepseek-v4-pro, deepseek/deepseek-v4-flash routes |
Current at publish |
| TokenLab model catalog | GPT-5.5, Claude Sonnet 5, Claude Opus 4.8, Gemini 3.5 Flash pricing | Current at publish |
| DeepSeek deprecation notice | deepseek-chat/deepseek-reasoner sunset date |
2026-07-08 |
Benchmark scores (AIME, MATH-500, HumanEval) for DeepSeek V4 Pro are not included in this snapshot because no verified source was supplied. If you need these numbers for a technical decision, pull them directly from DeepSeek's published model card rather than relying on secondhand summaries.
Model And Cost Comparison
All prices below are per million tokens (MTok), sourced directly from the TokenLab model catalog. This is the table to use for cost comparisons - figures elsewhere in this article that reference official DeepSeek API pricing are called out separately since they differ slightly from TokenLab's listed rate.
| Model | Input $/MTok | Output $/MTok | Context Window |
|---|---|---|---|
| deepseek/deepseek-v4-flash | $0.09 | $0.18 | 1,048,576 |
| deepseek/deepseek-v4-pro | $0.435 | $0.87 | 1,048,576 |
| minimax/minimax-m3 | $0.30 | $1.20 | 1,048,576 |
| qwen/qwen3.7-plus | $0.32 | $1.28 | 1,000,000 |
| moonshotai/kimi-k2.7-code | $0.74 | $3.50 | 262,144 |
| z-ai/glm-5.2 | $0.93 | $3.00 | 1,048,576 |
| google/gemini-3.5-flash | $1.50 | $9.00 | 1,048,576 |
| anthropic/claude-sonnet-5 | $2.00 | $10.00 | 1,000,000 |
| openai/gpt-5.5 Batch/Flex | $2.50 | $15.00 | 1,050,000 |
| anthropic/claude-opus-4.8 | $5.00 | $25.00 | 1,000,000 |
| openai/gpt-5.5 | $5.00 | $30.00 | 1,050,000 |
| anthropic/claude-fable-5 | $10.00 | $50.00 | 1,000,000 |
Worked example: a task consuming 500K input tokens and 100K output tokens costs roughly $0.30 on DeepSeek V4 Pro, versus $2.00 on Claude Sonnet 5 and $5.50 on GPT-5.5 - about 6.6x and 18x cheaper respectively, at TokenLab's listed rates. On DeepSeek V4 Flash, the same workload costs about $0.06.
Implementation Notes / Migration Steps
If you're currently calling deepseek-chat or deepseek-reasoner, follow this path before the 2026-07-24 deprecation:
- Audit current usage. Identify every call site using the legacy model names and note whether you rely on reasoning-mode outputs (chain-of-thought traces) - this behavior maps to V4 Flash's reasoning mode, not V4 Pro.
- Pick a tier deliberately. Use V4 Flash for high-volume, latency-sensitive, or reasoning-mode workloads where concurrency (2,500 requests) matters. Use V4 Pro for tasks where output quality per request outweighs cost, and where the 500-request concurrency ceiling is acceptable.
- Update model identifiers. Swap
deepseek-chat/deepseek-reasonerfor the explicit V4 Flash or V4 Pro endpoint names in your API calls before the cutover date - do not rely on automatic mapping in production. - Re-check pricing routes. If you're routing through TokenLab, confirm whether your integration hits the
deepseek/deepseek-v4-flashrate ($0.09/$0.18) or a pass-through to DeepSeek's native API rate ($0.14/$0.28 cache miss). These are not interchangeable for cost forecasting. - Account for caching. DeepSeek's native API offers cache-hit input pricing as low as $0.0028/MTok (Flash) and $0.003625/MTok (Pro) - structure prompts with repeated prefixes to capture this discount if you're calling the official API directly.
- Load test concurrency. If your workload spikes above 500 concurrent requests, plan for V4 Flash or a multi-model fallback rather than assuming V4 Pro headroom.
When To Use TokenLab
- You need one dashboard across DeepSeek, GPT-5.5, Claude Sonnet 5, and a dozen other models rather than juggling separate API keys, billing dashboards, and rate-limit policies per vendor.
- You want cost transparency before you commit. TokenLab's per-MTok listings let you run the same worked-example math shown above across every model in your evaluation set, instead of estimating from vendor marketing pages.
- You're mid-migration off a deprecated model name. TokenLab routes can be swapped without re-architecting your integration, which matters given the
deepseek-chat/deepseek-reasonersunset on 2026-07-24.
Related Reading
FAQ
Is DeepSeek V4 Pro cheaper than GPT-5.5? Yes, substantially. On TokenLab's listed rates, GPT-5.5 costs $5.00/MTok input and $30.00/MTok output, versus $0.435/$0.87 for DeepSeek V4 Pro - roughly 11x cheaper on input and 34x cheaper on output. This is the GPT-5.5 figure that matches the comparison table above; do not confuse it with older GPT-5 pricing, which is a different model tier.
Why do I see two different prices for DeepSeek V4 Flash?
Because there are two sources: DeepSeek's own API lists $0.14/MTok input (cache miss) and $0.28/MTok output, while TokenLab's deepseek/deepseek-v4-flash route lists $0.09/$0.18. These are separate pricing paths - confirm which one your integration actually bills against before forecasting costs at volume.
Does DeepSeek V4 Pro outperform GPT-5.5 or Claude Sonnet 5 on reasoning benchmarks like AIME or MATH-500? This cannot be answered accurately from the sources used in this article - no verified AIME, MATH-500, or HumanEval scores for V4 Pro were supplied. Check DeepSeek's official model card directly before making a benchmark-based purchasing decision.
What happens to my integration if I'm still calling deepseek-reasoner after July 24, 2026?
DeepSeek has stated the legacy names deprecate on that date and will map to V4 Flash modes. To avoid unexpected behavior changes, migrate explicitly to the V4 Flash or V4 Pro endpoint name before the cutover rather than relying on the automatic mapping.
Ready to compare DeepSeek V4 Pro against GPT-5.5, Claude Sonnet 5, and a full model catalog with live pricing? Start with TokenLab and route your workloads to the model that fits your cost and quality targets.
Sources
Price observed 2026-07-07
- DeepSeek API pricingObserved 2026-07-08
- TokenLab model directoryObserved 2026-07-07



