{
  "$type": "site.standard.document",
  "bskyPostRef": {
    "cid": "bafyreicep6hnjvqbvfwb4y67klpb2ue4bphghqojo3pt5smhd67khnrawy",
    "uri": "at://did:plc:25rdn5elo5izoxrmtis34zuk/app.bsky.feed.post/3motr2pjkrxb2"
  },
  "coverImage": {
    "$type": "blob",
    "ref": {
      "$link": "bafkreiasgf7pa7eju6l5qpyoiehvlm2smbn4siqsu7vhyfokfioh3pb4jq"
    },
    "mimeType": "image/webp",
    "size": 73572
  },
  "path": "/yanlong_wang/ai-api-price-war-deepseek-v4-pro-cuts-75-gemini-35-flash-lands-2nem",
  "publishedAt": "2026-06-22T01:21:39.000Z",
  "site": "https://dev.to",
  "tags": [
    "deepseek",
    "gemini",
    "ai",
    "programming",
    "AiCredits",
    "AiCredits Blog"
  ],
  "textContent": "#  AI API Price War Heats Up: DeepSeek V4-Pro Cuts 75% & Gemini 3.5 Flash Lands\n\nMay 31, 2026 is shaping up to be a landmark day in the AI API market. Two developments are converging:\n\n  1. **DeepSeek V4-Pro's 75% price cut goes permanent** — the temporary promo ends, and the discount becomes the new baseline.\n  2. **Google's Gemini 3.5 Flash** arrived at I/O 2026, boasting 4x speed and sub-$10 output pricing.\n\n\n\nThe message is clear: the AI API price war is no longer simmering — it's boiling over.\n\n##  The State of Play: DeepSeek V4-Pro's Aggressive Move\n\nBack on May 22, DeepSeek dropped a bombshell: V4-Pro API pricing would permanently lock in at roughly one-quarter of its original price. The 75% discount that was supposed to expire on May 31? It's now the permanent rate.\n\nHere's what the new pricing looks like:\n\nModel | Input (per 1M tokens) | Output (per 1M tokens) | Context Window\n---|---|---|---\n**DeepSeek V4-Pro** | $0.435 | $0.87 | 128K\n**DeepSeek V3** | $0.14 | $0.28 | 64K\n**Gemini 3.5 Flash** | $1.50 | $9.00 | 1M\n**Claude Haiku 4.5** | $1.00 | $5.00 | 200K\n**GPT-4o** | $2.50 | $10.00 | 128K\n\n> _Pricing accurate as of May 2026. Sources: official API docs and third-party aggregators._\n\nDeepSeek's V4-Pro output price of $0.87/M tokens is **10x cheaper than GPT-4o** and **5x cheaper than Claude Haiku 4.5**. For developers building AI agents, chatbots, or automated workflows that generate thousands of tokens per request, the savings compound fast.\n\n###  Why This Matters More Than Previous Cuts\n\nThis isn't just another \"we're reducing prices\" announcement. Three things make DeepSeek's move different:\n\n  1. **It's permanent.** No more guessing whether the discount will expire next month.\n  2. **It's V4-Pro — not the budget tier.** This is DeepSeek's flagship reasoning model, competitive with GPT-4o and Claude Opus on benchmarks.\n  3. **It resets developer expectations.** When a top-tier model costs under $1/M output tokens, the pricing floor for the entire industry drops.\n\n\n\n##  Google Gemini 3.5 Flash Enters the Arena\n\nNot to be outdone, Google used I/O 2026 to unveil **Gemini 3.5 Flash** , and the numbers are impressive:\n\n  * **4x faster** than other frontier models\n  * **1 million token context window** — the largest in its class\n  * Priced at **$1.50/$9.00** per 1M input/output tokens\n  * Outperforms Gemini 3.1 Pro on coding and agent benchmarks\n\n\n\nGoogle is positioning Flash as the high-volume workhorse: fast enough for real-time applications, cheap enough to run at scale, and multimodal (text, vision, video, audio all supported natively).\n\nThe trade-off? At $9.00/M output, it's still **10x more expensive than DeepSeek V4-Pro** for pure text workloads. If your app doesn't need multimodal capabilities, the cost difference is hard to ignore.\n\n##  The Bigger Picture: Why Every API Is Getting Cheaper\n\nThis isn't random. Three structural forces are driving prices down across the board:\n\n###  1. Inference Optimization Is Eating Cost\n\nTechniques like speculative decoding, quantization, and kernel fusion are squeezing more tokens per GPU-second. DeepSeek's own V4-Pro architecture is reportedly several times more inference-efficient than V3.\n\n###  2. Competition Is Brutal\n\nThe market has gone from \"OpenAI and everyone else\" to a legitimate free-for-all:\n\n  * **Anthropic** iterating on Claude Opus/Sonnet/Haiku\n  * **Google** pushing Gemini into production at Google-scale pricing\n  * **Meta** open-sourcing Llama, letting anyone self-host\n  * **OpenAI** defending with GPT-5 on the horizon\n  * **DeepSeek** undercutting everyone on price while matching on quality\n\n\n\n###  3. Developers Are Price-Sensitive — And Vocal\n\nHN threads, Reddit discussions, and Twitter debates show that API pricing is a top-3 concern for AI builders. Providers who ignore pricing lose developer mindshare fast.\n\n##  What This Means for AI Developers\n\nHere's the practical takeaway for anyone building AI-powered applications:\n\n**If you're cost-sensitive (most of us are):**\nStart with DeepSeek V4-Pro. At $0.87/M output tokens, you can serve thousands of users before API costs become a concern. The OpenAI-compatible API means you can swap providers with minimal code changes.\n\n**If you need multimodal (vision, audio, video):**\nGemini 3.5 Flash is the obvious choice — native multimodal support with a 1M context window at competitive pricing. No other model in this price range handles images and video natively.\n\n**If you're in a regulated industry (GDPR, HIPAA):**\nConsider Claude via AWS Bedrock or Azure's managed offerings. The compliance overhead is worth the premium.\n\n**The hybrid approach (recommended):**\nUse DeepSeek V4-Pro as your default, with fallback to Gemini Flash for multimodal tasks. This gives you the best of both worlds: cheap text, powerful vision — and no single-provider lock-in.\n\n\n\n    # Example: Multi-provider routing with cost optimization\n    import openai\n\n    def route_request(prompt: str, needs_vision: bool = False):\n        if needs_vision:\n            client = openai.OpenAI(\n                base_url=\"https://generativelanguage.googleapis.com/v1beta\",\n                api_key=\"YOUR_GEMINI_KEY\"\n            )\n            model = \"gemini-3.5-flash\"\n        else:\n            client = openai.OpenAI(\n                base_url=\"https://api.deepseek.com/v1\",\n                api_key=\"YOUR_DEEPSEEK_KEY\"\n            )\n            model = \"deepseek-v4-pro\"\n\n        return client.chat.completions.create(\n            model=model,\n            messages=[{\"role\": \"user\", \"content\": prompt}]\n        )\n\n\n##  The Catch: Access Is Still a Barrier\n\nHere's the uncomfortable truth behind all these price cuts: **cheap API access doesn't matter if you can't get access at all.**\n\nDeepSeek's official API still requires a Chinese phone number for registration. Google's API is geo-restricted in several regions. And most international developers can't pay with regional payment methods.\n\nThat's exactly the problem AiCredits was built to solve.\n\nWe provide **OpenAI-compatible access to DeepSeek V4-Pro** with:\n\n  * No Chinese phone number required\n  * PayPal and international credit cards accepted\n  * Singapore CDN for low-latency API calls worldwide\n  * Same DeepSeek V4-Pro quality you expect\n\n\n\n> **Need stable DeepSeek API access?** Try AiCredits — OpenAI-compatible, no Chinese phone number, PayPal accepted. Plans start at $3 for 5M tokens.\n\n_Originally published on AiCredits Blog._",
  "title": "AI API Price War: DeepSeek V4-Pro Cuts 75% & Gemini 3.5 Flash Lands"
}