DeepSeek V4 Flash Vision Exp API — pricing & specs
DeepSeek V4 Flash Vision Exp is an experimental DeepSeek model that accepts text and image input and returns text. On KeepRouter, DeepSeek V4 Flash Vision Exp costs $0.4400 per 1M input tokens and $1.32 per 1M output tokens, billed pay-as-you-go with no monthly fee. Call it through a compatible KeepRouter endpoint supported by its active route, with the model id deepseek-v4-flash-vision-exp.
| Maker | DeepSeek |
|---|---|
| Modality | Text, vision |
| Context window | 1,000,000 tokens |
| Max output | 384,000 tokens |
| Released | 2026-08-21 |
| Input price | $0.4400 per 1M tokens |
| Output price | $1.32 per 1M tokens |
| Cached input | $0.0140 per 1M tokens |
| Capabilities | Vision (image input), Chat completions, Streaming where supported, Tool calling where supported |
| Endpoint | POST /v1/chat/completions or POST /v1/messages (compatible chat routes) |
| Model id | deepseek-v4-flash-vision-exp |
How pricing works for DeepSeek V4 Flash Vision Exp
DeepSeek V4 Flash Vision Exp is billed per token — $0.4400 per 1M input tokens and $1.32 per 1M output tokens, with cached input at $0.0140 per 1M tokens. The published price is pay-as-you-go, with no monthly fee; actual request cost depends on measured token usage.
Calling DeepSeek V4 Flash Vision Exp on KeepRouter
Point a compatible client at the supported KeepRouter endpoint and set the model to deepseek-v4-flash-vision-exp. KeepRouter preserves the client-facing request shape while handling upstream routing or translation. Use POST /v1/chat/completions or, on compatible chat routes, POST /v1/messages; streaming and tool support depend on the model's active route.
cURL
curl https://keeprouter.com/v1/chat/completions \
-H "Authorization: Bearer $KEEPROUTER_KEY" -H "Content-Type: application/json" \
-d '{"model":"deepseek-v4-flash-vision-exp","messages":[{"role":"user","content":[{"type":"text","text":"What is in this image?"},{"type":"image_url","image_url":{"url":"https://keeprouter.com/logo-512.png"}}]}]}'Python
from openai import OpenAI
client = OpenAI(base_url="https://keeprouter.com/v1", api_key="$KEEPROUTER_KEY")
r = client.chat.completions.create(model="deepseek-v4-flash-vision-exp", messages=[{"role":"user","content":[{"type":"text","text":"What is in this image?"},{"type":"image_url","image_url":{"url":"https://keeprouter.com/logo-512.png"}}]}])JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://keeprouter.com/v1", apiKey: process.env.KEEPROUTER_KEY });
const r = await client.chat.completions.create({ model: "deepseek-v4-flash-vision-exp", messages: [{ role: "user", content: [{ type: "text", text: "What is in this image?" }, { type: "image_url", image_url: { url: "https://keeprouter.com/logo-512.png" } }] }] });Source and verification boundary
Official DeepSeek V4 Flash Vision Exp documentation. KeepRouter's live catalog is authoritative for the customer price and enabled endpoint shown here; the maker remains authoritative for upstream model capabilities and limits.
Guides
- Call DeepSeek V4 Flash Vision Exp with the OpenAI SDK
- Use DeepSeek V4 Flash Vision Exp in Claude Code
Related models
- DeepSeek V4 Pro by DeepSeek — $1.32 per 1M input tokens and $3.96 per 1M output tokens
- DeepSeek V4 Flash by DeepSeek — $0.4400 per 1M input tokens and $1.32 per 1M output tokens
- DeepSeek V3.1 by DeepSeek — $0.2100 per 1M input tokens and $0.7900 per 1M output tokens
- DeepSeek V3.2 by DeepSeek — $0.2288 per 1M input tokens and $0.3432 per 1M output tokens
- Devstral Medium by Mistral AI — $0.4000 per 1M input tokens and $2.00 per 1M output tokens
- Doubao 1.5 Lite by ByteDance — $0.1000 per 1M input tokens and $0.2000 per 1M output tokens
All models & pricing · Quickstart · KeepRouter vs OpenRouter · Glossary · Get an API key
Catalog facts and prices last changed 2026-08-26.