Cached at:
08/21/26, 01:22 PM
# Vision | DeepSeek API Docs
Source: [https://api-docs.deepseek.com/guides/vision/](https://api-docs.deepseek.com/guides/vision/)
The`deepseek\-v4\-flash\-vision\-exp`model accepts images alongside text, so you can ask the model to describe pictures, read text from screenshots, analyze charts, and more\.
Supported image formats:**JPEG, PNG, GIF, and WebP**\. The format is detected from the actual file content, not from the file name or the declared MIME type\.
---
## Sending Images[](https://api-docs.deepseek.com/guides/vision/#sending-images)
There are three ways to provide an image to the model\. All of them use the standard OpenAI\-compatible Chat Completions format, where`content`is an array of blocks instead of a plain string\. The same three methods are also available in the[Responses API](https://api-docs.deepseek.com/guides/responses_api#image-input), where images are carried in`input\_image`content parts\.
The`base\_url`for the examples below is`https://api\.deepseek\.com`\.
### 1\. Base64\-encoded image \(inline\)[](https://api-docs.deepseek.com/guides/vision/#1-base64-encoded-image-inline)
Encode the image and embed it directly in the request as a`data:`URL\. This is the simplest option for local files\. The encoded data counts toward the**48 MiB**request body limit \(see[Limits](https://api-docs.deepseek.com/guides/vision/#limits)\)\.
```
import base64from openai import OpenAIclient = OpenAI(api_key="<DeepSeek API Key>", base_url="https://api.deepseek.com")with open("image.jpg", "rb") as f: b64 = base64.b64encode(f.read()).decode("utf-8")response = 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": f"data:image/jpeg;base64,{b64}"}, }, ], } ],)print(response.choices[0].message.content)
```
```
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": "What is in this image?"}, {"type": "image_url", "image_url": {"url": "data:image/jpeg;base64,<BASE64_DATA>"}} ] } ] }'
```
### 2\. External image URL[](https://api-docs.deepseek.com/guides/vision/#2-external-image-url)
Pass a publicly accessible`http\(s\)`link and the model downloads the image for you\. The URL must be at most**8192 characters**, the image file may be at most**32 MiB**, and the download must complete within**60 seconds**\. If your link is longer, use a base64 data URL or the Files API instead\.
```
response = client.chat.completions.create( model="deepseek-v4-flash-vision-exp", messages=[ { "role": "user", "content": [ {"type": "text", "text": "Describe this image."}, { "type": "image_url", "image_url": {"url": "https://example.com/image.jpg"}, }, ], } ],)print(response.choices[0].message.content)
```
### 3\. Reference a file uploaded via the Files API[](https://api-docs.deepseek.com/guides/vision/#3-reference-a-file-uploaded-via-the-files-api)
Upload an image once with the[Files API](https://api-docs.deepseek.com/guides/files_api), then reference its`file\_id`in your requests\. This is the best option when you reuse the same image across multiple requests, or when the image pushes the request body over the 48 MiB inline limit\. Unlike inline images, images referenced via Files API`file\_id`may be up to 64 MiB and are not subject to the 32 MiB per\-image check\.
Use a`file`content block with the returned`file\_id`\(which has the form`file\-api\-\.\.\.`\):
```
response = client.chat.completions.create( model="deepseek-v4-flash-vision-exp", messages=[ { "role": "user", "content": [ {"type": "text", "text": "What is in this image?"}, {"type": "file", "file_id": "file-api-xxxxxxxxxxxxxxxx"}, ], } ],)print(response.choices[0].message.content)
```
Alternatively, a`file`block can carry the image inline as base64 via`file\_data`instead of`file\_id`\(the two are mutually exclusive\):
```
{ "type": "file", "file_data": "data:image/jpeg;base64,<BASE64_DATA>", "filename": "image.jpg"}
```
---
## Detail Level[](https://api-docs.deepseek.com/guides/vision/#detail-level)
For`image\_url`inputs you can optionally set a`detail`field to control how the image is processed:
ValueBehavior`low`The image is downscaled to 512×512 before inference\. Faster and cheaper when fine visual detail is not important\.`high`Keeps the original image\. \(Provided for compatibility; equivalent to`original`\.\)`original`Keeps the original image\.`auto`Automatic selection\. Currently equivalent to`original`\.```
{ "type": "image_url", "image_url": {"url": "https://example.com/image.jpg", "detail": "low"}}
```
---
## When to Use the Files API[](https://api-docs.deepseek.com/guides/vision/#when-to-use-the-files-api)
Inline images \(base64 or`file\_data`\) count toward the request body size limit of**48 MiB**\. Consider the[Files API](https://api-docs.deepseek.com/guides/files_api)when:
- A single request would exceed the body size limit\.
- The image is larger than 32 MiB, which is only possible through the Files API\.
- You reference the same image in multiple requests and want to avoid re\-uploading it each time\.
---
## Token Usage[](https://api-docs.deepseek.com/guides/vision/#token-usage)
Images are converted into tokens based on their dimensions, and these tokens are billed together with your text tokens\.
Before inference, every image is automatically resized:
- Images with a total pixel count below roughly 384×384 are scaled up while preserving their aspect ratio\.
- Larger images are scaled down while preserving their aspect ratio, so that the total pixel count after resizing is roughly that of an**800×800**image\.
As a result, there is an upper bound of**384**tokens per image: for example, a 2000×2000 image and a 5000×5000 image consume the same number of tokens after resizing\. When a request contains multiple images, each image is counted independently under the same rule — there is no separate calculation for multi\-image requests\.
To estimate the token cost of an image of a specific size, use the image token calculator on the[Token & Token Usage](https://api-docs.deepseek.com/quick_start/token_usage)page\.
---
## Limits[](https://api-docs.deepseek.com/guides/vision/#limits)
LimitValueSupported formatsJPEG, PNG, GIF, WebPExternal URL length8192 charactersRequest body size48 MiBMax single image size \(base64 / external URL\)32 MiBMax single image size \(Files API`file\_id`\)64 MiBMax images per request600Max total image size per request64 MiB without`file\_id`images; up to 200 MiB including`file\_id`imagesMax image dimension8192 px per side; drops to 4096 px per side when a request contains 15 or more imagesFor storage and upload quotas of files uploaded via the Files API, see[Files API: Limits](https://api-docs.deepseek.com/guides/files_api#limits)\.
---
## Restrictions[](https://api-docs.deepseek.com/guides/vision/#restrictions)
- Images are supported in`user`messages only: images in`system`or`assistant`messages return a`400`error\.
- Only vision models \(`deepseek\-v4\-flash\-vision\-exp`\) accept images; other models return a`400`error \("This model does not support image"\)\.
- User text containing the reserved image placeholder token is rejected with a`400`error\.
---
## Using Images with the Anthropic API[](https://api-docs.deepseek.com/guides/vision/#using-images-with-the-anthropic-api)
In addition to the OpenAI\-compatible endpoint above, you can send images through the Anthropic\-compatible`/messages`endpoint \(`base\_url`=`https://api\.deepseek\.com/anthropic`\)\. For general setup, see[Anthropic API](https://api-docs.deepseek.com/guides/anthropic_api)\.
The difference is the shape of the image content block\. Instead of`image\_url`, Anthropic uses an`image`block with a`source`object whose`type`is one of`base64`,`url`, or`file`:
```
import anthropicclient = anthropic.Anthropic() # ANTHROPIC_BASE_URL=https://api.deepseek.com/anthropicmessage = client.messages.create( model="deepseek-v4-flash-vision-exp", max_tokens=1024, messages=[ { "role": "user", "content": [ {"type": "text", "text": "What is in this image?"}, { "type": "image", "source": { "type": "base64", "media_type": "image/jpeg", "data": "<BASE64_DATA>", }, }, ], } ],)print(message.content)
```
The three`source`variants mirror the OpenAI methods above:
`source\.type`Equivalent OpenAI methodNotes`base64`Base64\-encoded imageRequires a`media\_type`field \(`image/jpeg`,`image/png`,`image/gif`, or`image/webp`\)\.`url`External image URLMax 8192 characters\.`file`Files API`file\_id`Requires the header`anthropic\-beta: files\-api\-2025\-04\-14`\.
---
## Using Images with the Responses API[](https://api-docs.deepseek.com/guides/vision/#responses-api)
The`deepseek\-v4\-flash\-vision\-exp`model also accepts images through the OpenAI\-compatible[Responses API](https://api-docs.deepseek.com/guides/responses_api#image-input)\. The same three input methods \(base64 data URL, external`http\(s\)`URL, Files API`file\_id`\) and the same[limits](https://api-docs.deepseek.com/guides/vision/#limits)apply; only the content part shape differs — images are carried in`input\_image`parts, either in`user`/`developer`messages or in the output of`function\_call\_output`/`custom\_tool\_call\_output`items:
```
response = client.responses.create( model="deepseek-v4-flash-vision-exp", input=[ { "role": "user", "content": [ {"type": "input_text", "text": "What is in this image?"}, {"type": "input_image", "image_url": "https://example.com/image.jpg", "detail": "low"}, ], } ],)print(response.output_text)
```
The`input\_image`part supports a`detail`field with the same semantics as above \(`low`/`high`/`original`/`auto`\)\.`detail`is ignored when the image is provided via`file\_id`, and`image\_url`and`file\_id`are mutually exclusive\.
For field semantics, restrictions \(images in`system`/`assistant`messages are rejected with a`400`error\), and tool\-output images, see the[Responses API guide](https://api-docs.deepseek.com/guides/responses_api#image-input)\.