Research index
Model releases/

DeepSeek V4 Flash Vision API: Pricing, Off-Peak Rate and Setup

DeepSeek V4 Flash Vision API pricing is $0.22 per 1M input and $0.66 per 1M output at all hours (DeepSeek off-peak). Experimental vision preview.

Written byRouterPlex
Reading time3 min
DeepSeek V4 Flash Vision API: Pricing, Off-Peak Rate and Setup

DeepSeek V4 Flash Vision is the experimental vision sibling of DeepSeek V4 Flash, live as model ID deepseek-v4-flash-vision-exp. RouterPlex bills $0.22 per 1M input tokens and $0.66 per 1M output tokens at all hours — DeepSeek's published off-peak rate.

DeepSeek also publishes a peak window at double that rate (01:00–04:00 and 06:00–10:00 UTC, Monday to Friday). This route does not switch to peak. You pay off-peak even inside those hours. The lab may still change or withdraw the preview.

Sources: the RouterPlex catalog row for DeepSeek V4 Flash Vision, checked 7 September 2026. The live page is the bill.

DeepSeek V4 Flash Vision API pricing #

WindowInput / 1MOutput / 1MWhat RouterPlex bills
Off-peak (DeepSeek)$0.22$0.66Yes, at all hours
Peak (DeepSeek, weekday UTC windows)$0.44$1.32No

Cached input on this catalog is $0.007 per 1M.

A $5 prepaid balance at the billed rate buys roughly 22.7 million input tokens, or 7.6 million output tokens, if a workload used only one category.

Flash vs Flash Vision vs Pro #

ModelInput / 1MOutput / 1MVisionMax output
deepseek-v4-flash$0.09$0.18No384,000
deepseek-v4-flash-vision-exp$0.22$0.66Yes384,000
deepseek-v4-pro$0.435$0.87No384,000

Vision more than doubles Flash's token price. If the request has no image, deepseek-v4-flash is the cheaper ID.

Cost per agent turn #

One 40,000-token prompt returning 2,000 tokens, no cache:

ModelCost per turn
DeepSeek V4 Flash$0.004
DeepSeek V4 Flash Vision$0.010
GLM-5.3 Flash$0.007
Gemini 3.8 Flash (intro)$0.038
DeepSeek V4 Pro$0.019

The arithmetic for Flash Vision: 40,000 × $0.22 / 1M + 2,000 × $0.66 / 1M = $0.0088 + $0.00132 = $0.01012.

Live pages: DeepSeek V4 Flash Vision, DeepSeek V4 Flash, DeepSeek V4 Pro.

DeepSeek V4 Flash Vision specifications #

CapabilityDeepSeek V4 Flash Vision
Model IDdeepseek-v4-flash-vision-exp
ProviderDeepSeek
Context window1,000,000 tokens
Max output per request384,000 tokens
Image inputYes — standard image_url block
Tool callingYes
ReasoningYes
StatusExperimental preview
OpenAI-compatible chat APIYes
Anthropic-compatible /v1/messagesYes

Call DeepSeek V4 Flash Vision with RouterPlex #

bash
curl https://api.routerplex.com/v1/chat/completions \
-H "Authorization: Bearer $ROUTERPLEX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-v4-flash-vision-exp",
"messages": [
{"role": "user", "content": "Describe the layout of this screenshot."}
]
}'
python
import os
from openai import OpenAI
 
client = OpenAI(
api_key=os.environ["ROUTERPLEX_API_KEY"],
base_url="https://api.routerplex.com/v1",
)
 
response = client.chat.completions.create(
model="deepseek-v4-flash-vision-exp",
messages=[{"role": "user", "content": "Extract the table from this screenshot."}],
)
 
print(response.choices[0].message.content)

Attach images with the usual OpenAI image_url content block. Claude Code can point at the same model with ANTHROPIC_BASE_URL=https://api.routerplex.com and model deepseek-v4-flash-vision-exp. See the Claude Code setup guide.

Which DeepSeek should you actually call? #

  • Text-only volumedeepseek-v4-flash at $0.09 / $0.18.
  • Need vision on DeepSeekdeepseek-v4-flash-vision-exp, knowing it is experimental.
  • Need a generally available vision FlashGLM-5.3 Flash or Gemini 3.8 Flash.
  • Need DeepSeek Pro quality, no imagesdeepseek-v4-pro.

Give an experimental ID its own hard budget. The live DeepSeek V4 Flash Vision page is the number this route will actually bill.

Common questions

Frequently asked questions

How much does DeepSeek V4 Flash Vision cost?

RouterPlex bills DeepSeek's off-peak rate of $0.22 per 1M input and $0.66 per 1M output at all hours. DeepSeek's published peak rate (01:00–04:00 and 06:00–10:00 UTC, Monday to Friday) is double that; this route does not switch to peak.

Is this the same as DeepSeek V4 Flash?

No. deepseek-v4-flash is $0.09 / $0.18 and has no vision. deepseek-v4-flash-vision-exp is the experimental vision sibling at $0.22 / $0.66.

What is the context window?

1,000,000 tokens of context, with 384,000 maximum output tokens on this catalog.

Why is the ID tagged exp?

It is an experimental vision preview. DeepSeek may change the rate, the capabilities, or withdraw the ID.

Does DeepSeek V4 Flash Vision support tool calling?

Yes. Vision and tools are both on for this route.

Can I use it with the OpenAI SDK?

Yes. Point the OpenAI SDK at https://api.routerplex.com/v1 with model ID deepseek-v4-flash-vision-exp. Images use the standard OpenAI image_url content block.

Run the smallest paid test.

Add $5, cap the key, and verify the result with your own workload. No subscription, and credit never expires — a first top-up of $25+ is matched with $25 extra.