Home โ€บ Models โ€บ DeepSeek V4 Flash

DeepSeek V4 Flash API

DeepSeek's fast, low-cost tier at 67% below official pricing โ€” the highest volume-per-dollar in the DeepSeek family for production pipelines.

High volumeBest for: Cheapest DeepSeek tier for big, simple pipelines.

SpecificationValue
Official price$0.42 / $1.27 per 1M tokens save 67%
Bridge price$0.14 / $0.28 per 1M tokens, flat
Cached input$0.014 per 1M tokens (1/10 of input)
Context window128K tokens
Max output32,768 tokens
StrengthsHigh-volume tasks, speed, price
Official DeepSeek V4 Flash pricing is ยฅ3 input / ยฅ9 output (โ‰ˆ$0.42 / $1.27). Bridge prices are flat โ€” see the live price table.

Why developers pick it

Code example

from openai import OpenAI

client = OpenAI(base_url="https://bridge.computeindex.net/v1", api_key="sk-bridge-YOUR_KEY")

completion = client.chat.completions.create(
    model="deepseek-v4-flash",
    messages=[{"role": "user", "content": "Classify this ticket: 'My invoice is wrong.'"}],
)
print(completion.choices[0].message.content)

FAQ

Is this the same model as DeepSeek's official V4 Flash? Yes โ€” the same model, served through the Bridge OpenAI-compatible gateway.

When should I use Flash instead of V4 Pro? For simple, high-volume tasks where speed and price dominate; keep V4 Pro for hard reasoning and code.

Get $1 free credit โ†’ try DeepSeek V4 Flash

Related