DeepSeek's Top Model Gets 77% Cheaper Tomorrow, and Its Peak Hours Are Your Working Morning

DeepSeek Is Routing Its Top Model to a Cheaper One, and Billing You at the Cheaper Price
DeepSeek has notified its API users that V4.1 Flash ships on 10 September 2026. The news is not the launch. It is what follows it: from 4:00 UTC, 7:00 in Riyadh, every request aimed at the flagship V4 Pro will be routed to the new model and billed at the new model's price. Anyone using the strongest model today pays the fastest model's price tomorrow, without changing a line of their system.
That is up to 77% off input and 70% off output. The number matters, but three details in the announcement matter more, and they are the ones that actually decide your bill.
The Numbers
Prices are per one million tokens, a token being the smallest unit of text the model reads: a word, a number, a punctuation mark. These are off-peak rates; peak rates are exactly double.
| Item | V4 Pro today | V4.1 Flash tomorrow | Change |
|---|---|---|---|
| 1M input tokens, read from cache | $0.022 | $0.003 | -86% |
| 1M input tokens, fresh | $0.66 | $0.15 | -77% |
| 1M output tokens | $1.98 | $0.60 | -70% |
If you are on the regular V4 Flash today the drop is smaller but real: fresh input from $0.22 to $0.15, and cached input from $0.007 to $0.003.
Their Peak Hours Sit Inside Your Working Morning
DeepSeek bills at two rates, peak and off-peak, and the gap is double. Peak hours are published in UTC: 01:00 to 04:00 and 06:00 to 10:00, Monday to Friday.
Convert that to Riyadh time and peak runs from 04:00 to 07:00 and from 09:00 to 13:00. The entire Saudi working morning falls inside peak, at twice the price. After 13:00 the rate halves until the next morning.
The practical consequence is direct. Work that answers a customer in real time stays where it is, whatever it costs, because the customer does not wait. Work that nobody is waiting on — monthly report generation, classifying a message archive, extracting data from old files, summarising minutes — costs half as much if it runs after 13:00 or overnight, with no other change. Scheduling is an operational decision, not a technical one, and here it moves the bill as much as changing the model does.
The Cache: A Fifty-Fold Difference
Look at the first row of the table again. Fresh input is $0.15. Input read from cache is $0.003. That is a fifty-fold gap, the largest single spread in the whole price list, and the most commonly ignored.
The cache works on the beginning of your message. Send the same opening text on every request and DeepSeek charges it once at full price, then reads it back for a fraction. Most real systems carry a large fixed block on every call: the assistant's instructions, the product and price list, the returns policy, the tone of voice. None of that changes between one customer and the next.
So the difference between a system that orders its prompt and one that does not is not an engineering nicety. It is whether the fixed part is charged once or recharged in full on every message. The rule is simple: fixed first, variable last.
Take an example. A WhatsApp assistant handling 3,000 conversations a month, each with 4,000 input tokens and 500 output tokens, costs about $10.89 a month at today's off-peak V4 Pro price. At tomorrow's V4.1 Flash price it falls to $2.70. Order the prompt so 80% of the input reads from cache and it falls to $1.29. Eight times between the first figure and the last, and in the final step the model never changed. Only the order of the text did.
The Clause Worth Reading Rather Than Skipping
One sentence in the notice deserves attention: continued use of the service after the billing change is treated as acceptance of the new terms, and anyone who disagrees may cancel and request a refund.
This is standard language in cloud service contracts, and it is unobjectionable here because the change favours the user. But the principle is worth noticing: the same clause permits a price change in the other direction by the same mechanism. If you are building a commercial system on top of somebody else's API, your running cost is not a fixed number in the business case. It is a term that changes on notice.
The Lesson Beyond DeepSeek
Notice what happened to the model name. A developer who wrote deepseek-v4-pro into their system will find their requests going somewhere else by the provider's decision. Here the outcome favours them: cheaper, faster, better by the vendor's own account. But the same mechanism is what moves your requests to a different model on a day when the decision does not favour you.
One rule covers it: do not scatter the model name through your system. Keep it as a single configuration value, and let every call pass through one layer in your code. Then changing the model, or changing the provider entirely, is a one-line edit rather than a project. It costs nothing to do at the start and weeks to retrofit later.
And the point that matters most to a business owner: at these prices the model is no longer what stops a project. Running an assistant across thousands of conversations a month now costs less than your office coffee bill. What decides the outcome is everything around the model: whether your data is organised enough for it to read, whether it is actually wired into your systems or answering from nothing, and whether you know what happens when it gets something wrong.
How We Handle This at Origami
In the systems we build for clients, every model call passes through a single layer, and the model name lives in a configuration file rather than repeated through the code. When the market shifts, and it shifts about monthly, moving a client to a cheaper or more accurate model is a decision executed in minutes and measured afterwards, not a rebuild.
We also treat prompt order as a design decision rather than a detail: the fixed block first so it reads from cache, the variable part last. And we separate what needs an immediate answer from what can wait, so the second kind runs in the cheap hours. Three decisions nobody sees in the interface, all of which show up on the invoice.
Sources
Frequently asked questions
When exactly does the new price start?+
At 4:00 UTC on 10 September 2026, which is 7:00 in Riyadh. From that moment V4 Pro requests are routed to V4.1 Flash and billed at its price.
Do I need to change my system to get the new price?+
No. The routing happens at DeepSeek's end and the model name in your code stays as it is. It is worth checking that the model name lives in one place in your configuration though, because today's change shows a model name is not a guaranteed constant.
Why does my bill vary by the hour?+
DeepSeek bills at two rates and the gap is double. In Riyadh time, peak runs 04:00 to 07:00 and 09:00 to 13:00, Monday to Friday. Any job that does not need an immediate answer costs half as much if you run it after 13:00.
What is the cache and why is the gap so large?+
It charges the fixed part of your message once instead of recharging it on every request. Cached input is $0.003 against $0.15 for fresh input, a fifty-fold difference. You benefit from it by putting the text that never changes — instructions, product list, policies — at the start of the message rather than the end.
Does this mean V4 Pro has been discontinued?+
The notice says the routing runs until V4.1 Pro is released, so it is a transition rather than a retirement. It is still a practical reminder that a provider can change what sits behind a model name at any time, which is what makes isolating the call in a single layer a sound decision rather than over-engineering.
Follow Origami in Google
Pin Origami as a preferred source and our articles will surface first for you in Google Search and Top Stories.

Related articles
- Artificial IntelligenceFrom Months to Hours: MHS Connects Your Factory and Lab Devices to One AI AgentAnthropic opened a research preview of MHS, a standard that lets one AI agent operate lab and factory instruments together, cutting integration from weeks to hours.
- Artificial IntelligenceYour Customer Data Never Leaves the Machine: Perplexity Runs Half the Task LocallyPerplexity shipped Hybrid Compute on Mac: an on-device gate reads every task and swaps names and addresses before anything reaches the cloud. The architecture matters more than the product.
- Artificial IntelligenceTencent Opens Hy4: 770 Billion Parameters You Can Run on Your Own ServersTencent released Hy4 open-weight under Apache 2.0: 770B parameters, a one-million-token context, and weights you can download and run inside your own infrastructure without sending data anywhere. When self-hosting genuinely pays off, and when it is cost without return.
- Artificial IntelligenceThe EU Just Classified ChatGPT as a Search Engine: What It Means for Your BusinessThe European Commission designated ChatGPT a Very Large Online Search Engine on August 31, 2026. Here is what the ruling means for AI visibility and what to do now.
- Artificial IntelligenceThe Global AI Summit 2026 in Riyadh: What It Actually Means for Your BusinessRiyadh hosts the fourth Global AI Summit (GAIN) on 15-17 September 2026. A practical guide for Saudi business owners: what to watch, and how to turn announcements into decisions.
- Artificial IntelligenceGoogle Ships /boost in Antigravity: Agent Teams That Write and Verify CodeGoogle added the /boost command to Antigravity, running a multi-agent reasoning pipeline that splits the problem then independently verifies the fix. What it means if you buy software.
Have a project in mind?
We build custom systems, apps and websites for your business. Tell us your idea and we will give you a straight answer on it.
