Back to Models

Qwen3 VL Plus

qwenqwen/qwen3-vl-plus

Qwen3 vision-language β€” text + image input, text output, 256K context.

qwen3-vl-plus is the vision-language model of the Qwen3 generation. It accepts text and image content in the same OpenAI-compatible `messages` array and produces text answers β€” suitable for document understanding, chart reading, UI screenshot analysis, OCR-light extraction, and visual Q&A.

Images can be passed as HTTP URLs or base64 data URIs. The model's 256K context lets you bundle many images plus their textual instructions in a single call. TheRouter routes between bailian-cn and bailian-sg per request based on cost.

Text + image input
Mixed-modal `messages` content with `image_url` parts β€” OpenAI-format compatible.
256K context
Bundle many images and their prompts in a single call. Good fit for multi-page document VQA.
OCR-light extraction
Strong at reading text inside images β€” charts, screenshots, scanned forms β€” without a dedicated OCR pipeline.
Dual-region routing
Selector picks bailian-cn or bailian-sg per request based on cost.
When to use
Document VQA, chart and screenshot understanding, light OCR, UI-element extraction, and any workload that mixes text instructions with image content.
When not to use
Pure text reasoning (use qwen-plus / qwen3-max), text-to-image generation (use wan/wan2.2-t2i-*), or audio / video understanding β€” qwen3-vl-plus does not output images and does not consume audio.
Pricing: $0.30 input / $2.00 output per MTok. TheRouter routes to the cheaper of bailian-cn / bailian-sg per request. Image content is billed by the tokenised image size per Bailian's schedule.
Context Length
262K
Max Output
16K
Input Priceper 1M tokens
$0.360/ 1M tokens
Output Priceper 1M tokens
$2.40/ 1M tokens

Modalities

textimage→text

Pricing Breakdown

TypeRate
Input$0.360 / 1M tokens
Output$2.40 / 1M tokens

Supported Parameters

temperaturemax_tokenstop_ptoolsresponse_formatstop

API Usage Examples

Use the global api.therouter.ai endpoint shown below for new integrations; the legacy China accelerated endpoint is retired.

cURL
curl https://api.therouter.ai/v1/chat/completions   -H "Content-Type: application/json"   -H "Authorization: Bearer $THE_ROUTER_API_KEY"   -d '{
    "model": "qwen/qwen3-vl-plus",
    "messages": [
      {"role": "user", "content": "Summarize the key points from this input."}
    ]
  }'
Customer Support