TL;DR
Yes. DeepSeek now documents an experimental vision model, deepseek-v4-flash-vision-exp, on its API platform. It accepts mixed text and image input through OpenAI-compatible Chat Completions, Responses, Anthropic-compatible Messages, and the Files API. Start with a small JPEG or PNG, keep the image in a user message, and treat the benchmark numbers in DeepSeek's announcement as vendor-reported until independent evaluations catch up.
DeepSeek’s official benchmark graphic compares V4-Flash-Vision-Exp with V4-Flash-0731 and Opus-4.8. Source: .
DeepSeek Vision API is no longer a rumour or a community workaround. On August 21, DeepSeek added the experimental model deepseek-v4-flash-vision-exp to its API platform and published a dedicated . The change is easy to miss if you only look at the older deepseek-v4-flash model page: this is a separate model id, with image input enabled from day one.
The practical question is not whether the model can “see”. It is how you send the image, which limits you hit, and whether the new multimodal path is ready for the workflow you actually run. This guide answers those questions from the official docs, then adds a little context from the first community write-ups. We have not run a Mengbi benchmark against a live API key, so performance claims are labelled as DeepSeek’s claims rather than presented as independent test results.
Quick answer: is DeepSeek Vision API live?
Yes. The documented model is deepseek-v4-flash-vision-exp. It accepts text plus JPEG, PNG, GIF, or WebP images through the OpenAI-compatible Chat Completions format. DeepSeek also documents the Responses API, an Anthropic-compatible /messages endpoint, and a Files API for images you want to upload once and reuse.
For a first request, use a small screenshot or chart, put the image in a user message, and start with detail: "low" when you only need a quick read. Do not point an existing text-only integration at this model by accident: the model id is part of the feature, and other DeepSeek models return an image-not-supported error according to the docs.
The short version:
How to use the DeepSeek Vision API
The official API keeps the familiar OpenAI-compatible endpoint at api.deepseek.com/chat/completions. The important difference is the content array inside the user message. One block carries your instruction; the other carries an image_url object.
This is an adapted example based on DeepSeek’s request shape, not a claim that Mengbi executed it. Keep the key on your server, add a timeout, and log the model id alongside the request. A surprisingly common integration bug is to accept an uploaded file in the UI and then silently send only its filename to the model.
If your stack already uses Anthropic’s message format, the same image can be represented as an image block with a source of base64, url, or file. DeepSeek’s covers that translation. The Responses API uses input_image parts. Pick one request shape for the first integration; adding three adapters at once makes failures harder to diagnose.
DeepSeek V4 Flash Vision-Exp image input methods
The Vision guide gives you three input paths. They solve different problems, so “which one is best?” depends on whether the image is private, reusable, or already hosted.
Base64 is convenient for a one-off screenshot. URLs keep the JSON readable and are easy to retry, provided the asset is reachable from DeepSeek’s servers. The Files API is the better fit for a document-review queue: upload once, retain the file_id, and reference the same source in later prompts. DeepSeek’s describes the upload and reuse flow.
The model does not identify an image by its filename alone. The docs say detection is based on the actual file content rather than a misleading extension or MIME label. That is useful protection against badly labelled uploads, but it is not a reason to skip validation on your side.
Detail levels, token accounting, and hard limits
Image understanding has two separate constraints: what the model can inspect and what the API will accept. Mixing them up is how teams end up with a request that is technically valid but too slow, too large, or too expensive for a batch job.
There is also a role rule that is easy to miss: with Chat Completions, images belong in user messages. Putting an image in a system or assistant message produces a 400 response. Add a contract test for this before wiring the model into a multi-agent harness.
The official announcement’s table includes text-agent and multimodal-agent rows. The numbers are DeepSeek-reported, with the evaluation setup and footnotes shown in the source graphic; they are not an independent Mengbi test.
What the official benchmark graphic does — and does not — tell us
DeepSeek’s announcement says that the new model keeps V4-Flash’s text capabilities for agents, reasoning, and world knowledge, while making a “major leap” on multimodal-agent performance. The graphic compares DeepSeek V4-Flash-Vision-Exp, DeepSeek V4-Flash-0731, and Opus-4.8 across text-agent and multimodal-agent evaluations.
That is useful launch context, not a universal leaderboard. The footnote says the code-agent rows use DeepSeek Harness Minimal Mode with specific generation settings, and another note says the text-only V4-Flash model ignores multimodal elements in two multimodal evaluations. In other words, the image documents DeepSeek’s test setup as much as it documents the scores.
The first community summary on Reddit is helpful for spotting what developers care about—the 384-token image cap, the user-role restriction, and the three upload methods—but it is a digest of the docs, not a separate evaluation. Earlier V4 Flash reviews, such as the and , are useful context for the text model and API economics. They predate this vision release, so they should not be read as evidence about image accuracy.
Where this model is useful first
The most credible early use cases are the ones where an image is an input to an existing text workflow:
- Screenshot triage. Ask for visible error text, UI labels, or a concise reproduction checklist before a human opens the ticket.
- Chart and dashboard reading. Extract labels and directional changes, then ask a second pass to point out what the chart does not prove.
- Document review. Render selected PDF pages, upload the images through Files API, and keep the question and source page together in your audit trail.
- Agent loops. Let an agent inspect a screenshot of a browser state or terminal error, but keep the action policy and final approval outside the model.
- Chinese-language visual work. Product screenshots, receipts, and local dashboards often contain mixed Chinese and English labels. This is a sensible place to compare the new model with the vision model your team already trusts.
The last point matters for Mengbi’s audience. The new API is not a reason to throw away a working stack. It is a new candidate for the image-reading step, especially when the rest of the workflow already uses DeepSeek for structured reasoning or agent calls. Our covers the surrounding terminal and IDE workflow; this article is about the model boundary where pixels become structured input.
A production-minded first integration
Start with a narrow contract rather than a general “look at anything” endpoint. Define the accepted file types, resize policy, maximum dimensions, timeout, and output schema. Store the original image hash and the model id with every result. If the answer drives an automated action, require a second validation step or human confirmation.
For batch work, route images by purpose. Low detail is a reasonable default for thumbnails and broad classification. Use high or original detail only when the small text changes the decision. Keep a retry budget, but do not blindly resend a 30 MiB base64 payload three times; switch to a hosted URL or Files API when the transport is the problem.
Finally, separate “the model saw the image” from “the model was correct”. Log the source page, the question, the returned text, and the reviewer’s correction. That gives you an evaluation set you own instead of relying on a launch graphic or a vendor leaderboard.
Is DeepSeek V4 Flash Vision-Exp ready for production?
It is ready for controlled experiments and small, observable workflows. The API surface is concrete, the limits are documented, and the input formats fit common OpenAI and Anthropic adapters. The -exp suffix is still important: it signals that teams should expect behaviour, availability, or pricing details to change.
We would not make it the only vision model in a high-stakes pipeline yet. Run a small parallel set against your current provider, measure OCR and chart errors on your own images, and decide whether the latency, access, and review burden fit the job. The right question is not “is it as good as Opus?” It is “does it make this particular workflow cheaper or easier without hiding new failure modes?”
FAQ
What is the DeepSeek Vision API model name?
The official model id is deepseek-v4-flash-vision-exp. It is separate from the text-only deepseek-v4-flash id, and the Vision guide says other models will reject image input.
Can I send a local image to DeepSeek?
Yes. Convert the bytes to a base64 data URL, or upload the image through the Files API and send the returned file_id. A private local path is not a URL that DeepSeek can fetch directly.
How many tokens does an image use?
DeepSeek’s Vision documentation says images are resized to around 800 × 800 for token accounting and capped at 384 tokens per image. That accounting rule does not remove the separate request-size and pixel-dimension limits.
Is the Opus-4.8 comparison independently verified?
Not in this article. The comparison comes from DeepSeek’s own announcement graphic and test setup. Treat it as a vendor-reported launch claim until an independent evaluation publishes a reproducible result.
Does DeepSeek Vision API support Anthropic-style messages?
Yes. DeepSeek documents an Anthropic-compatible /messages endpoint with image blocks. The content shape is different from OpenAI-compatible Chat Completions, so keep the adapter explicit instead of trying to send one payload to both endpoints.
Sources and review notes
The capability and limit details in this guide were checked against the , , and on August 21, 2026. Community context comes from the , the , and . No live API request was run for this article; examples are documentation-based and should be validated with your own key and image set.
Last reviewed: August 21, 2026.
AI tools mentioned
MENGBI
Building with AI? Let’s talk.
Get listed on Mengbi, or access leading AI models through one API with better pricing.
Related reading
GLM-5.3-Flash API Is Here: Pricing, Benchmarks & How to Use It
GLM-5.3-Flash API pricing, benchmark context and working curl and Python examples, plus image input, 1M context and production setup notes.
Best AI Writing Tools 2026 for Content Teams & SEO
Compare ChatGPT and Claude for drafting, Grammarly for editing, Jasper for brand voice, Notion AI for teamwork, and Writesonic for SEO content.