deepseek/deepseek-v4-flash-vision-exp
DeepSeek V4 Flash Vision Exp is an experimental multimodal understanding model that accepts mixed text and image input and produces text output. It supports OpenAI-compatible image URL and base64 data URL content parts w...
Input⌘ / Ctrl + Enter
Try a prompt
OutputReady
Your response will appear here
Choose an example or write a prompt, then click Run.
API details and access
Model Details
ProviderDeepSeek
TypeLlm
Model IDdeepseek/deepseek-v4-flash-vision-exp
Capabilities
InputTextImage
OutputText
Context-
Max Output384,000
VisionSupported
Function CallingSupported
Access details
Chat CompletionsBase URLhttps://api.sandbase.ai
API Endpoint/v1/chat/completions
{
"model": "deepseek/deepseek-v4-flash-vision-exp",
"messages": [
{
"role": "user",
"content": "Hello"
}
],
"max_tokens": 512
}Pricing
Input$0.44 / 1M tokens
Output$1.32 / 1M tokens
Cache read$0.01 / 1M tokens
Production endpoint
Send your first request
OpenAI-compatible endpoint with unified authentication and usage tracking.
POST
https://api.sandbase.ai/v1/chat/completionsModel ID
deepseek/deepseek-v4-flash-vision-exp01
Input Schema
11 parameters · 1 required · 10 optional
| Parameter | Type | Required | Description |
|---|---|---|---|
messages | array | Required | OpenAI-compatible messages. Image parts are accepted only in user messages. Supported image formats: JPEG, PNG, GIF, and WebP. Up to 600 images are allowed per request. |
stop | string[] | Optional | — |
tools | array | Optional | — |
top_p | number | Optional | Min: 0 · Max: 1 |
stream | boolean | Optional | Default: false |
max_tokens | integer | Optional | Max: 384000 |
temperature | number | Optional | Min: 0 · Max: 2 · Default: 1 |
tool_choice | any | Optional | — |
response_format | object | Optional | — |
presence_penalty | number | Optional | Min: -2 · Max: 2 |
frequency_penalty | number | Optional | Min: -2 · Max: 2 |
02
Output Schema
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the completion |
object | string | Object type, e.g. "chat.completion" |
model | string | Model used for the completion |
choices | array | List of completion choices |
choices[].message.content | string | Generated text content |
choices[].finish_reason | string | Reason the generation stopped |
usage.prompt_tokens | integer | Number of tokens in the prompt |
usage.completion_tokens | integer | Number of tokens in the completion |
usage.total_tokens | integer | Total tokens used |
03
Code Examples
Ready-to-run snippets
curl https://api.sandbase.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "deepseek/deepseek-v4-flash-vision-exp",
"messages": [{"role": "user", "content": "Hello"}],
"temperature": 0.7,
"max_tokens": 2048,
"stream": true
}'
