DeepSeek's First Vision Model Is Here — V4 Flash Vision Exp Costs $0.00017 Per Image (vs. Opus-4.8 at $50/M)
DeepSeek just gave its cheapest model eyes — and didn't raise the price by a cent.
On August 21, 2026, DeepSeek quietly added deepseek-v4-flash-vision-exp to its API platform. It's the first model in the V4 family that can see images. And here's the kicker: it costs the same as the text-only V4-Flash.
Let me break down what this means, what the benchmarks say, and how you can actually use it today.
What Actually Shipped
DeepSeek-V4-Flash-Vision-Exp is an experimental multimodal variant built on top of V4-Flash-0731 (284B total params, 13B active, MoE architecture). It adds image input while keeping:
- 1M context window (same as V4-Flash)
- 384K max output tokens
- JSON Output, Tool Calls, Responses API, Anthropic API support
- Up to 600 images per request
- Formats: JPEG, PNG, GIF, WebP
According to DeepSeek's official release, the model matches V4-Flash on pure-text capabilities (agent, reasoning, world knowledge) while bringing multimodal agent performance "close to Opus-4.8."
The Price: Same as V4-Flash
This is the part that matters most. Images are not charged separately. DeepSeek converts image dimensions into tokens — capped at 384 tokens per image — and bills them at the standard V4-Flash rate.
Current V4-Flash pricing (post-August 17 peak/off-peak adjustment):
| Metric | Off-Peak | Peak |
|---|---|---|
| Input (cache miss) | $0.22/M tokens | $0.44/M tokens |
| Output | $0.66/M tokens | $1.32/M tokens |
| Per image (max) | ~$0.000085 | ~$0.00017 |
A thousand images at peak pricing costs $0.17. That's less than a cup of coffee.
Compare that to Anthropic Opus-4.8 at $10/$30 per million tokens (input/output), or Opus 5 at $15/$75. Even Google Gemini 2.5 Flash charges $0.15/$0.60 per million tokens for text alone — and its multimodal tier is more expensive.
Benchmark Reality Check
DeepSeek published 11 benchmark results comparing Vision Exp against Opus-4.8. The headline: it wins 3 out of 11, runs close on most, and trails by 12 points on the hardest one.
| Benchmark | Vision Exp | Opus-4.8 | Verdict |
|---|---|---|---|
| Terminal Bench 2.1 | 83.9 | 85.0 | Close |
| DeepSWE | 59.3 | 58.0 | ✅ Wins |
| Chartography | 64.3 | 65.0 | Close |
| ApexBench (Pass@1) | 36.5 | 39.4 | Close |
| Agents' Last Exam | 27.3 | 25.7 | ✅ Wins |
| ZeroBench (Pass@5) | 35.0 | 34.0 | ✅ Wins |
| NL2Repo | 57.7 | 69.7 | ❌ -12pts |
| DSBench-Hard | 63.6 | 71.7 | ❌ -8pts |
The independent tech press summed it up well: "An experimental Chinese multimodal model sits within a few points of a supported American model on most benchmarks, wins three of eleven, costs a fraction as much."
One important caveat: these are DeepSeek's own internal benchmarks, run on their own DeepSeek Harness. No independent lab has reproduced them yet. But the pattern is consistent with everything DeepSeek has done before — competitive quality at a radically different price point.
What This Means for Developers
1. Vision agent tasks just got 50x cheaper
If you're building agents that need to read screenshots, charts, UI mockups, or error messages, you can now do it at V4-Flash pricing. A pipeline that would cost $100/month on Opus-4.8 could run for under $2 on Vision Exp.
2. It's a drop-in replacement
The model works through DeepSeek's standard Chat Completions endpoint. You can send images via base64, URL, or DeepSeek's Files API:
from openai import OpenAI
client = OpenAI(
base_url="https://api.deepseek.com",
api_key="your-key"
)
response = client.chat.completions.create(
model="deepseek-v4-flash-vision-exp",
messages=[
{
"role": "user",
"content": [
{"type": "text", "text": "What's in this image?"},
{
"type": "image_url",
"image_url": {
"url": "https://example.com/screenshot.png",
"detail": "high"
}
}
]
}
]
)
3. It's an experimental model — plan for churn
The "Exp" suffix means DeepSeek may revise or replace it on short notice. Best practice:
- Don't hardcode the model ID in 12 places — use a config variable
- Keep a text-only fallback (V4-Flash stable)
- Snapshot your evals before/after upgrades
How to Access It via TunanAPI
If you're outside China and don't want to deal with Chinese phone verification, Alipay, or mainland bank accounts, TunanAPI gives you access to DeepSeek V4 Flash (and Vision Exp when available) through a standard OpenAI-compatible endpoint.
One line change:
from openai import OpenAI
client = OpenAI(
base_url="https://api.tunanapi.com/v1",
api_key="your-tunan-api-key"
)
TunanAPI pricing for DeepSeek Chat:
| Model | Input | Output |
|---|---|---|
| DeepSeek Chat (V4 Flash) | $0.70/M | $1.40/M |
| DeepSeek Reasoner (V4 Pro) | $2.18/M | $4.35/M |
Compare: Anthropic Opus-4.8 is $10/$30 per million. Claude Opus 5 is $15/$75. You're looking at 7x to 50x savings.
Also available on TunanAPI:
- GLM-4 Flash — $0.05/M (both ways) — free-tier quality
- Qwen 3.7 Max — $2.08/$6.25 — 1M context, flagship
- MiniMax M3 — $1.20/$4.80 — multimodal, vision support
- Qwen 3.5 Flash — $0.35/$1.39 — ultra-cheap production
PayPal payments, no Chinese phone number, instant signup.
👉 Get started free — 500K free tokens: https://tunanapi.com
The Bottom Line
DeepSeek V4 Flash Vision Exp is a real, useful expansion of DeepSeek's API lineup. It adds vision to the cheapest well-known model on the market, at no extra cost per image, with multimodal agent performance that competes with Opus-4.8 on most benchmarks.
The headline numbers are attention-grabbing, but the real story is simpler: if you're building agents that need to see, you now have a viable option at 1/50th the cost.
Treat it as what it is — an experimental preview worth testing against your actual multimodal agent workload. Given the negligible marginal cost, there's no reason not to try it.
Pricing source: DeepSeek official pricing page (https://api-docs.deepseek.com/quick_start/pricing), TunanAPI pricing (https://tunanapi.com). Benchmark data from DeepSeek's official August 21 release announcement. All figures are vendor-reported unless otherwise noted.
#DeepSeek #VisionModel #AI #Multimodal #LLM #Developer #TunanAPI
Top comments (0)