Full Model Pricing
Model profile

DeepSeek: DeepSeek V4 Flash Vision Exp

deepseek chat
deepseek/deepseek-v4-flash-vision-exp

DeepSeek: DeepSeek V4 Flash Vision Exp model served through TamgaStudio.

At a glance

Model specifications

The most important technical and pricing details in one place.

Context window
1M tokens
Model type
Chat
Input / 1M
$0.14
Output / 1M
$0.28

Providers and routing order

Gateway-compatible routes are tried from the lowest cost; other sources are shown for catalog reference.

5 sources
1
Fireworks AIGateway activeaccounts/fireworks/models/deepseek-v4-flash-vision-exp · Updated 13.09.2026 19:17
Input$0.0000 / 1M Output$0.0000 / 1M Cache$0.0000 / 1M Media-
2
SiliconFlowGateway activedeepseek-ai/DeepSeek-V4-Flash-Vision-Exp · Updated 13.09.2026 19:17
Input$0.1400 / 1M Output$0.2800 / 1M Cache$0.0000 / 1M Media-
3
OpenRouterGateway activedeepseek/deepseek-v4-flash-vision-exp · Updated 13.09.2026 19:17
Input$0.2200 / 1M Output$0.6600 / 1M Cache$0.0070 / 1M Media-
4
Novita AICatalog sourcedeepseek/deepseek-v4-flash-vision-exp · Updated 13.09.2026 19:17
Input$0.4400 / 1M Output$1.3200 / 1M Cache$0.0280 / 1M Media-
5
DeepInfraCatalog sourcedeepseek-ai/DeepSeek-V4-Flash-Vision-Exp · Updated 13.09.2026 19:17
Input$0.4400 / 1M Output$1.3200 / 1M Cache$0.0140 / 1M Media-
Live telemetry

Usage and performance

Current request, token, and latency data across TamgaStudio.

Usage Example

Call DeepSeek: DeepSeek V4 Flash Vision Exp with a single request through the OpenAI-compatible TamgaStudio API. Create your API key from the API Keys section in your dashboard.

curl https://api.tamga.studio/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer tl-sk-XXXXXX" \
  -d '{"model": "deepseek/deepseek-v4-flash-vision-exp", "messages": [{"role": "user", "content": "Hello!"}]}'
import requests

resp = requests.post(
    "https://api.tamga.studio/v1/chat/completions",
    headers={"Authorization": "Bearer tl-sk-XXXXXX"},
    json={
        "model": "deepseek/deepseek-v4-flash-vision-exp",
        "messages": [{"role": "user", "content": "Hello!"}],
    },
)
print(resp.json()["choices"][0]["message"]["content"])
<?php
$ch = curl_init('https://api.tamga.studio/v1/chat/completions');
curl_setopt_array($ch, [
    CURLOPT_POST => true,
    CURLOPT_HTTPHEADER => [
        'Authorization: Bearer tl-sk-XXXXXX',
        'Content-Type: application/json',
    ],
    CURLOPT_POSTFIELDS => json_encode([
        'model' => 'deepseek/deepseek-v4-flash-vision-exp',
        'messages' => [['role' => 'user', 'content' => 'Hello!']],
    ]),
    CURLOPT_RETURNTRANSFER => true,
]);
echo curl_exec($ch);

Frequently Asked Questions

Common questions about this model.

What is DeepSeek: DeepSeek V4 Flash Vision Exp?
DeepSeek: DeepSeek V4 Flash Vision Exp model served through TamgaStudio. It is accessible through a single OpenAI-compatible API via TamgaStudio.
How much does DeepSeek: DeepSeek V4 Flash Vision Exp cost?
Pricing is $0.14 per 1M input tokens and $0.28 per 1M output tokens. Billing is credit-based: you only pay for what you use.
What is the context length of DeepSeek: DeepSeek V4 Flash Vision Exp?
DeepSeek: DeepSeek V4 Flash Vision Exp supports a context of up to 1,048,576 tokens in one request.
Can I use DeepSeek: DeepSeek V4 Flash Vision Exp with the OpenAI SDK?
Yes. TamgaStudio exposes all models through an OpenAI-compatible endpoint: https://api.tamga.studio/v1/chat/completions. Just swap the base URL and API key in your existing OpenAI code.
How do I get an API key?
After signing in, create a key from the "API Keys" section of your dashboard. The key is shown only once and is stored as a SHA-256 hash.