DeepSeek API Pricing Is Changing on August 16—Here Is What It Will Actually Cost
Calculate DeepSeek V4 Pro and Flash costs under the August 16 peak and off-peak pricing schedule, with practical budgeting examples.

DeepSeek is about to make API budgeting more complicated—and potentially more controllable. At 16:00 UTC on August 16, 2026, the company plans to replace its current flat V4 rates with peak and off-peak prices. Off-peak usage will cost half the peak rate, creating a direct incentive to move flexible workloads away from busy hours.
The change affects both DeepSeek-V4-Flash and the newly GA DeepSeek-V4-Pro. It also changes the economics enough that old cost comparisons will become misleading. This article translates the official per-million-token table into realistic workloads and explains how to avoid the most common budgeting mistakes.
First, the Timing
As of the verification date for this article—August 14—the new schedule is announced but not yet active. DeepSeek says it starts at 16:00 UTC on August 16. The designated peak windows are 01:00–04:00 UTC and 06:00–10:00 UTC. All other hours are off-peak.
Because pricing is live operational information, confirm the official pricing page before funding an account or publishing a calculator. The rates below reflect that page on August 14, 2026.
The Scheduled Price Table
Prices are per one million tokens.
| Model and period | Cached input | Uncached input | Output | |---|---:|---:|---:| | V4 Flash off-peak | $0.007 | $0.22 | $0.66 | | V4 Flash peak | $0.014 | $0.44 | $1.32 | | V4 Pro off-peak | $0.022 | $0.66 | $1.98 | | V4 Pro peak | $0.044 | $1.32 | $3.96 |
Three patterns are immediately visible. Output is the expensive category. A cache miss costs far more than a cache hit. Pro is about three times the corresponding Flash rate. Those ratios are more useful than a single headline price because real applications have different input/output mixes.
What a Typical Request Costs
Consider a support assistant that reads 8,000 uncached input tokens and produces 1,000 output tokens. At off-peak Flash pricing, the model cost is approximately:
(8,000 / 1,000,000 × $0.22) + (1,000 / 1,000,000 × $0.66) = $0.00242
At peak Flash pricing, it doubles to about $0.00484. With Pro, the same token mix costs about $0.00726 off-peak and $0.01452 peak.
These numbers look tiny, but volume changes the picture. At one million such requests per month, the model-only difference between off-peak Flash and peak Pro is roughly $12,100. Tool calls, search APIs, storage, observability, retries, and human review would add more.
Now consider a coding agent that consumes 120,000 uncached input tokens and emits 20,000 output tokens per task. Flash costs about $0.0396 off-peak or $0.0792 peak. Pro costs about $0.1188 off-peak or $0.2376 peak. If the Pro model materially reduces failed attempts, it can still be economical. You need the success rate to decide.
Cache Hits Can Change the Result
The gap between cached and uncached input is enormous. For V4 Pro off-peak, one million uncached input tokens cost $0.66 while cached input costs $0.022. This makes prompt architecture an economic concern.
Place stable, reusable material where the provider's cache mechanism can recognize it. Avoid changing whitespace, ordering, timestamps, or irrelevant metadata in a large static prefix. Separate durable instructions and reference documents from per-request user content. Then measure actual cache-hit usage rather than assuming the design works.
Caching should not be used to justify sending everything. A smaller, relevant prompt is often more reliable than a cached mountain of noise. Optimize relevance first, cacheability second.
How to Use Off-Peak Pricing
Many AI tasks are not truly real time. Overnight report generation, repository indexing, embedding refreshes, document classification, synthetic-data creation, evaluation runs, and low-priority content drafts can wait.
Build a queue with three service classes:
- Interactive: run immediately and accept the current rate.
- Flexible: schedule for the next off-peak window.
- Batch: process in controlled chunks during off-peak hours.
Translate UTC windows carefully. Daylight-saving changes can shift local clock mappings. Store schedules in UTC and display the conversion to operators. Add jitter so every queued job does not start at the exact boundary, and cap concurrency to avoid a retry storm.
The Mistakes That Break Cost Forecasts
The first mistake is counting only visible text. Tokenizers split words, code, punctuation, JSON, and multilingual content differently. Use API-reported usage.
The second is ignoring agent loops. One “user request” can trigger dozens of model calls, search operations, test runs, and repairs. Budget per completed job, not per chat message.
The third is assuming max thinking is free quality. Greater reasoning effort can raise latency and consumption. Route simple work to low effort, daily agent tasks to high, and use max only when evaluations show a benefit.
The fourth is forgetting failures. Timeouts, invalid tool arguments, context overflow, and rejected outputs all cost money. Track retry reasons and fix systemic errors instead of paying for repetition.
The fifth is publishing future pricing as current pricing. Until the stated activation time, the old rates remain applicable. After activation, the official page is the source of truth.
A Better Model Budget
Create a worksheet with these columns:
- workload name;
- requests per month;
- average cached input;
- average uncached input;
- average output;
- expected peak/off-peak split;
- retry multiplier;
- Flash or Pro;
- tool and search cost;
- human review minutes;
- successful completion rate.
Calculate a low, expected, and high scenario. The high scenario should include a cache-miss spike and additional agent loops. Set alerts on dollars per successful task, not merely tokens per request.
If your organization is still identifying where AI belongs in its content or creative pipeline, experimenting through Elser AI can help define the useful workflow before you commit to API-scale architecture. A clear process prevents teams from optimizing token prices for a task users did not need.
FAQ
When does DeepSeek's new pricing begin?
DeepSeek says 16:00 UTC on August 16, 2026. Verify the live page in case the schedule changes.
When are peak hours?
The announced peak windows are 01:00–04:00 UTC and 06:00–10:00 UTC. Other hours are designated off-peak.
Is V4 Pro three times as expensive as Flash?
The scheduled rates are approximately three times Flash in each token category. The total cost per successful task may differ because quality, retries, and human repair also matter.
What is the easiest way to save money?
Use Flash for validated simple work, schedule flexible jobs off-peak, reduce unnecessary output, improve cache hits, and stop repeated failed agent loops.
Sources and Verification
This article uses DeepSeek's official API change log, model-and-pricing documentation, and V4 release material as primary sources. Product labels are preserved deliberately: V4 Pro 0813 is GA, while V4 Flash 0731 is described as public beta on the verification date. Benchmark figures are identified as vendor-reported rather than presented as independent Elser AI results. Scheduled pricing is labeled future until its announced activation time. Readers making production or purchasing decisions should recheck the live documentation because model aliases, prices, rate limits, beta status, and feature behavior can change after publication. Independent evaluation on representative tasks remains necessary.
Conclusion
DeepSeek's peak/off-peak system turns timing into a first-class cost variable. The largest savings will come from combining scheduling, caching, model routing, output control, and failure reduction. Copying the price table is not enough. Model your actual token mix and measure the cost of a successful business outcome.









































































