Skip to main content
株式会社オブライト
AI2026-08-226 min read

DeepSeek V4 Flash Vision Exp: Multimodal API Guide 2026

DeepSeek's V4-Flash-Vision-Exp launched Aug 21, 2026, adds image input at no premium over V4-Flash. Images run 384 tokens max; Files API free. Pricing, usage.


On August 21, 2026, DeepSeek released an experimental multimodal model called deepseek-v4-flash-vision-exp on its API Platform. Built on DeepSeek-V4-Flash, it keeps the same text performance (agentic tasks, reasoning, world knowledge) while adding image understanding. There is no price premium — it is billed at the same rate as V4-Flash. Despite the "Exp" (experimental) label signaling that DeepSeek itself does not treat it as production-guaranteed, it is available in the API immediately.

Key Specifications

ItemDetail
Release dateAugust 21, 2026
Model namedeepseek-v4-flash-vision-exp
Base modelDeepSeek-V4-Flash
ArchitectureMoE (284B total parameters / 13B activated per token)
Context length~1M tokens
ModalitiesText + image input, text output
Image tokenizationUp to 384 tokens per image
Weight availabilityNot confirmed as of this writing (API-only)
Supported endpointsChat Completions / Messages / Responses

What It Enables

Adding image understanding opens up multimodal agent tasks that text-only V4-Flash could not handle: reading a screenshot to plan a UI action, summarizing numbers from a chart or dashboard image, or extracting fields from a scanned invoice or document. DeepSeek states it made a large jump from V4-Flash on multimodal agent benchmarks.

- UI-operating agents: parsing screenshots and planning the next action
- Document processing: extracting fields from invoice or form images
- Chart reading: summarizing numbers from graphs or dashboard screenshots
- Mixed text-and-image chat: combining text and images within a single conversation

Pricing and Token Math

The key pricing point is that there is no premium for image input. deepseek-v4-flash-vision-exp bills at the same rate as V4-Flash, and images are counted at the same per-token price as text. The catch is that each image is tokenized at up to 384 tokens, so image-heavy requests will add meaningfully to input token counts.

- One image = up to 384 tokens counted toward billing
- Image tokens are simply added to the text prompt's token count
- The per-token rate itself matches V4-Flash's text rate — no separate image surcharge
- Uploading to the Files API itself is free (only tokens consumed at inference time are billed)

Getting Started

The fastest path is sending a message that mixes text and images to the Chat Completions (or Messages / Responses) endpoint. Images can be passed as base64, an external URL, or via the Files API. Below is a minimal curl example using Chat Completions with an externally hosted image.

curl https://api.deepseek.com/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $DEEPSEEK_API_KEY" \
  -d '{
    "model": "deepseek-v4-flash-vision-exp",
    "messages": [
      {
        "role": "user",
        "content": [
          {"type": "text", "text": "Summarize the key points of this chart in 3 lines."},
          {"type": "image_url", "image_url": {"url": "https://example.com/chart.png"}}
        ]
      }
    ]
  }' 

There are three ways to pass images — base64, external URL, and the Files API — each suited to different workflows. For workflows that reference the same image repeatedly, the Files API is more bandwidth-efficient since you upload once and reuse the resulting file_id.

MethodDescriptionBest for
base64Embed the image data directly in the requestOne-off, single requests
External URLPoint to a publicly hosted image URLImages already hosted elsewhere
Files APIReference a pre-uploaded file_idReusing the same image across multiple requests

The Role of the Files API

A practical detail worth noting is that the Files API is now available for deepseek-v4-flash-vision-exp. Upload an image once to get a file_id, then reference that file_id in subsequent requests instead of re-sending base64-encoded image data every time. This saves bandwidth for batch jobs or agent loops that repeatedly touch the same image, and using the Files API itself carries no charge.

How to Read the Benchmarks

DeepSeek describes the model as approaching Claude Opus 4.8 on multimodal agent benchmarks. This is a vendor-reported figure that has not been independently reproduced or verified, so it should be treated with appropriate caution. Moreover, according to DeepSeek's own published table, it only surpassed Opus 4.8 on 3 of 11 benchmarks — it does not outperform Opus 4.8 across the board. "Approaching" should be read as strong performance on select metrics, not overall superiority.

- This is a vendor-reported figure; independent reproduction has not been confirmed as of this writing
- It surpassed Opus 4.8 on only 3 of 11 benchmarks, matching or trailing on the remaining 8
- "Approaching" refers to select metrics, not across-the-board superiority
- On text-only tasks, performance is described as equivalent to the base V4-Flash

How It Compares to Other Options

When comparing options internally, text-centric workloads are still well served by DeepSeek-V4-Flash, and DeepSeek-V4-Pro is the candidate for heavier tasks that need higher accuracy — V4-Pro's own GA release and pricing update landed on August 13, 2026. Vision-Exp becomes worth considering only once image understanding is actually needed, and for teams wanting still higher accuracy, closed models like Claude Opus 4.8 come into the comparison. It's also worth reviewing the hardware and VRAM requirements across the V4 lineup.

ModelImage understandingPositioningPricing
DeepSeek-V4-FlashNoFast, low-cost text workloadsBase rate
DeepSeek-V4-Flash-Vision-ExpYes (experimental)Text + image multimodal agent workloadsSame rate as V4-Flash
DeepSeek-V4-ProNoHeavier tasks needing higher accuracyHigher rate than V4-Flash
Claude Opus 4.8YesClosed-model accuracy benchmarkVendor-specific pricing

Cautions for Production Use

- Spec-change risk: as an "Exp" (experimental) model, behavior and specs may change without notice
- No self-hosting: weight availability for Vision-Exp has not been confirmed as of this writing, so on-premises deployment is not an option
- Availability and rate limits unconfirmed: whether it matches standard V4-Flash availability guarantees is not publicly stated
- Image token cost management: for image-heavy workflows, estimate the up-to-384-token-per-image cost in advance

Given its experimental status, it's safer to avoid wiring it directly into a primary production path. Instead, run it alongside existing flows on the subset of workloads that actually need image understanding, confirm accuracy and cost in practice, and only then widen the rollout.

FAQ

Is deepseek-v4-flash-vision-exp priced differently from paid V4-Flash?

No. Both text and image usage are billed at the same rate as V4-Flash — there is no price premium for image input.

How is the cost per image calculated?

Each image is tokenized at up to 384 tokens, which is added to the text input token count. The per-token rate itself is the same as V4-Flash's text rate.

Is the Files API free to use?

Uploading to and managing the Files API is free. Only the tokens actually consumed during inference requests are billed.

Are the model weights published on Hugging Face?

As of this writing, weight availability for deepseek-v4-flash-vision-exp has not been confirmed. The base V4-Flash weights are published under an MIT license, but Vision-Exp currently appears to be API-only.

Does it really outperform Opus 4.8 on multimodal agent benchmarks?

According to DeepSeek's own published table, it surpassed Opus 4.8 on only 3 of 11 benchmarks — not across the board. This is also a vendor-reported figure that has not been independently reproduced or verified.

Feel free to contact us

Contact Us