Inference APIs
Compare/Chat

Qwen3-VL 235B vs DeepSeek V4 Flash (DeepSeek API)

Qwen3-VL 235B is an open-weight chat model you can call on this endpoint; DeepSeek V4 Flash (DeepSeek API) is offered from DeepSeek. Below: what each costs for three realistic workloads, the limits that apply, and when to choose which.

DeepSeek figures are public list prices and documented limits, checked 2026-09-16 against the provider page. Inference APIs prices are read live from the price list.

Short answer
  • Cost: DeepSeek V4 Flash (DeepSeek API) is cheaper in all three workloads, by 53–74%.
  • Limits: DeepSeek: No fixed rate limit published; requests queue under load. Prepaid top-ups, off-peak discounts. Here: no per-minute or per-day caps.

Side by side

Qwen3-VL 235BDeepSeek V4 Flash (DeepSeek API)
Served byInference APIsDeepSeek
Model authorAlibaba QwenAlibaba Qwen
Model idQwen/Qwen3-VL-235B-A22B-Instructdeepseek-v4-flash
Input price$0.26 / 1M tokens$0.14 / 1M tokens
Output price$1.15 / 1M tokens$0.28 / 1M tokens
Context window262K tokens1M tokens
CapabilitiesVision, OCR, Chat, Tool calling, JSON modeChat, Reasoning, Tool calling, JSON mode
WeightsOpenOpen
StatusAvailableAvailable
LimitsNo per-minute or per-day request or token caps; usage draws on a prepaid balanceNo fixed rate limit published; requests queue under load. Prepaid top-ups, off-peak discounts.
Time to first token1.28 snot measured by us
Output speed10.7 tokens / snot measured by us

What three workloads cost

List prices applied to the same work. The cheaper side of each row is in bold.

WorkloadQwen3-VL 235BDeepSeek V4 Flash (DeepSeek API)Difference
Chat assistant — 10,000 turns of 800 tokens in, 300 out$5.53$1.9665%
Long prompts or RAG — 10,000 requests of 8,000 in, 500 out$26.55$12.6053%
Generation-heavy — 10,000 requests of 500 in, 2,000 out$24.30$6.3074%

DeepSeek V4 Flash (DeepSeek API) is cheaper in all three workloads, by 53–74%. Reasoning models bill their thinking as output tokens, so real output counts run higher than the visible answer; treat the generation-heavy row as a floor for them.

When to choose which

Choose Qwen3-VL 235B if
  • Reading screenshots, invoices, receipts and scanned pages into text or JSON
  • Agents that need to look at an image and then call a tool
  • You need requests processed outside China; the first-party API is operated from China
Choose DeepSeek V4 Flash (DeepSeek API) if
  • You need more than 262K tokens of context (it takes 1M)
  • Cost is the deciding factor; it is cheaper in every workload above
  • Lowest list price for this model matters most
  • Off-peak batch work that can use its discount window

Price, context and speed are measurable; answer quality on your task is not something a table can settle. Both take the same request, so the honest test is to run your own prompts through each.

Measured speed

Medians of three streamed runs on 2026-09-17, public endpoint, a prompt that asks for about 120 words. Time to first token is the first token of any kind, reasoning included; output speed counts every generated token from that point. Reasoning models then think before the visible answer starts: Qwen3-VL 235B began answering after 1.28 s at default settings, which you can shorten with the reasoning controls on each model page. Expect ±30% with time of day. We did not measure DeepSeek and do not quote other people's numbers; read "not measured" as unknown, not slow. Method and raw numbers: speed measurements.

Switching from DeepSeek

Both speak the OpenAI wire format. The edit is the base URL, the key and the model id; then re-run your own prompts, because it is a different model.

Python · openai SDK
import os
from openai import OpenAI

# before: DeepSeek
# client = OpenAI(base_url="https://api.deepseek.com", api_key=os.environ["DEEPSEEK_API_KEY"])
# MODEL = "deepseek-v4-flash"

# after: Inference APIs
client = OpenAI(base_url="https://api.inferenceapis.com/v1", api_key=os.environ["INFERENCE_API_KEY"])
MODEL = "Qwen/Qwen3-VL-235B-A22B-Instruct"

resp = client.chat.completions.create(model=MODEL, messages=[{"role": "user", "content": "Hello"}], max_tokens=500)

More detail, including Node, LangChain and LiteLLM: switching OpenAI-compatible providers.

FAQ

Which is cheaper, Qwen3-VL 235B or DeepSeek V4 Flash (DeepSeek API)?

DeepSeek V4 Flash (DeepSeek API) is cheaper in all three workloads, by 53–74%. The table above uses list prices: Qwen3-VL 235B $0.26 / 1M tokens input, $1.15 / 1M tokens output; DeepSeek V4 Flash (DeepSeek API) $0.14 / 1M tokens input, $0.28 / 1M tokens output.

Can I switch from DeepSeek V4 Flash (DeepSeek API) to Qwen3-VL 235B without rewriting code?

Yes, if you call it through an OpenAI-compatible client. Change the base URL to https://api.inferenceapis.com/v1, swap the API key, and set the model to Qwen/Qwen3-VL-235B-A22B-Instruct. Because it is a different model, re-run your prompts and evaluations before moving production traffic.

What limits apply to DeepSeek V4 Flash (DeepSeek API)?

No fixed rate limit published; requests queue under load. Prepaid top-ups, off-peak discounts. On Inference APIs there are no per-minute or per-day request or token caps; usage draws on a prepaid balance.

Spotted a price or limit that has changed? Tell us and we will re-check the provider page.