DEV Community

Cover image for DeepSeek Price History 2024–2026: From Price Slasher to Price Hike — TokenPAPA Keeps Prices Stable
TokenPAPA
TokenPAPA

Posted on • Originally published at doc.tokenpapa.ai

DeepSeek Price History 2024–2026: From Price Slasher to Price Hike — TokenPAPA Keeps Prices Stable

DeepSeek Price History 2024–2026: From Price Slasher to Price Hike

On August 6, 2026, DeepSeek dropped a surprise announcement: it plans to significantly raise overall prices for its API services.

For a company that spent two and a half years playing the "price slasher" — cutting prices more than ten times to undercut every competitor — this is a historic turning point.

Here is the complete price history, and why TokenPAPA keeps DeepSeek access stable for its users.


DeepSeek API Price Timeline (2024–2026)

Date Event Key Price Points (Input)
2024.04 DeepSeek-V2 API launch Base pricing
2024.08 V2 price cut ¥0.1 / 1M tokens tier
2024.12 DeepSeek-V3 base pricing ¥0.5 / 1M input, ¥8 / 1M output
2025.02 Promo: V3 at 50% off, R1 at 25% off (off-peak hours) ¥0.25 / 1M input
2025.09 (early) V3.1 partial price cut ¥0.5 / 1M input
2025.09 (late) V3.2-Exp permanent ~80% cut ~¥0.1 / 1M input
2026.04.24 V4 series launch
2026.04.25 V4-Pro 25% promo ¥0.025 / 1M input
2026.04.26 Cache-hit input cut to 1/10 of launch price
2026.05 Off-peak 50% promo + peak-hour pricing (Beijing 14:00-18:00)
2026.06 V4 official pricing: V4-Pro ¥0.05/1M, V4-Flash ¥0.04/1M input
2026.08.01 V4-Flash public beta (OpenRouter data)
🔴 2026.08.06 Official announcement: significant overall price increase

The pattern is clear: from V2 (2024) to V4 Flash (2026), DeepSeek's strategy was aggressive discounts — often 50–90% off — to win market share. The August 2026 announcement marks the first major reversal: the "cheapest frontier model" era is ending.


Why Is DeepSeek Raising Prices?

  1. Surging demand — V4-Flash became one of the most-called models globally within a week of launch; capacity is strained.
  2. Compute costs — Training and inference at this scale (V4-Flash is a 284B-parameter model) is expensive; sustained below-cost pricing isn't viable forever.
  3. Peak-hour strain — DeepSeek already experimented with peak-hour pricing; the hike formalizes load-based pricing.
  4. Industry shift to "value pricing" — As Chinese AI media notes, the market is moving from pure price wars toward value-based pricing.

Experts note the timing is delicate: Meta's Muse Spark and GPT-5.6 Luna now offer competitive price-performance. DeepSeek's price hike tests whether its brand loyalty survives.


What This Means for Developers

  • Cost certainty is now a feature. With official DeepSeek prices going up, developers need a stable, predictable billing partner.
  • Model switching matters more than ever. When one provider's price changes, you want alternatives with zero migration cost.
  • Locking in current prices before the hike takes effect is the smart move.

✅ TokenPAPA Keeps Its Prices Stable

While DeepSeek raises official API prices, TokenPAPA maintains stable pricing and consistent service for DeepSeek models:

  • Same models, same qualitydeepseek-v4-flash and deepseek-v4-pro remain available
  • Stable rates — TokenPAPA's pricing is set by the platform and remains unchanged in the short term (see our pricing page for current rates)
  • One key, 30+ models — if you ever want alternatives (Qwen3.8, Kimi K3, Mimo, GPT, Claude, Gemini), switch with a single line change
  • Recharge discounts — tiered top-up bonuses (up to 4% off) still apply
from openai import OpenAI

client = OpenAI(
    api_key="your-tokenpapa-key",
    base_url="https://tokenpapa.ai/v1"
)

response = client.chat.completions.create(
    model="deepseek-v4-flash",  # Stable pricing on TokenPAPA
    messages=[{"role": "user", "content": "Hello, is DeepSeek available here?"}]
)
print(response.choices[0].message.content)
Enter fullscreen mode Exit fullscreen mode

FAQ

Q: When will DeepSeek's price increase take effect?

A: DeepSeek announced the plan on August 6, 2026 but hasn't published exact rates or a date. It advised users to plan usage ahead.

Q: Will my TokenPAPA costs go up?

A: Not in the short term. TokenPAPA keeps stable pricing for DeepSeek models. Check tokenpapa.ai/pricing for current rates.

Q: What alternatives do I have if I want to switch?

A: TokenPAPA gives you one key for 30+ models — Qwen3.8, Kimi K3, Mimo, GPT-5.6, Claude, Gemini, GLM and more. Switching is a one-line change.


Get Started

  1. Sign up at tokenpapa.ai
  2. Create your API key in the console
  3. Call DeepSeek or any of 30+ models — stable pricing, stable service
from openai import OpenAI
client = OpenAI(base_url="https://tokenpapa.ai/v1", api_key="your-key")

resp = client.chat.completions.create(
    model="deepseek-v4-flash",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(resp.choices[0].message.content)
Enter fullscreen mode Exit fullscreen mode

Originally published at https://doc.tokenpapa.ai/en/docs/blog/deepseek-price-history-tokenpapa.

Top comments (0)