Skip to main content
株式会社オブライト
AI2026-08-035 min read

Qwen3.7 Flash: Pricing, 1M Context & How to Use (2026)

Qwen3.7 Flash: Alibaba's closed vision model, priced from $0.03 per million input tokens, 1M-token context. Tiered pricing, use cases, limits. Updated Aug. 2026.


What Is Qwen3.7 Flash — The Short Answer

Qwen3.7 Flash is a vision-language reasoning model that Alibaba's Qwen team listed on OpenRouter on July 27, 2026. Pricing starts at $0.03 per million input tokens and $0.13 per million output tokens (OpenRouter's listed price), with support for up to 1 million tokens of context.

The model's weights are closed and cannot be run locally. It does not accept video input, and its output is text only. Alibaba has not disclosed the parameter count or architecture.

The Qwen3.7 family also includes the larger Qwen3.7 Plus and Qwen3.7 Max models; Flash is positioned as the cheapest, lowest tier. Comparisons with open-weight alternatives and the higher-tier models are covered below.

Basic Specifications

ItemValue
ProviderAlibaba, Qwen series
Release dateJuly 27, 2026 (listed on OpenRouter)
TypeVision-language reasoning model
WeightsClosed (proprietary, no local deployment)
Context lengthUp to 1,000,000 tokens
Max output65,536 tokens
Input modalityText + image (PNG/JPEG/WebP, base64 or URL)
Output modalityText only
Model IDqwen/qwen3.7-flash

Pricing — A Tiered Structure That Rises With Context Length

Context tierInput (per 1M tokens)Output (per 1M tokens)
Up to 32K$0.03$0.13
32K–256K$0.10$0.40
256K–1M$0.20$0.80

These figures come from QwenCloud (DashScope)'s published pricing; OpenRouter's listed price reflects only the lowest tier ($0.03/$0.13). Batch jobs that push close to the full 1M-token context can see input costs rise roughly 6.7x and output costs roughly 6.2x compared with the base tier.

The model supports prompt caching, which can reduce costs for workloads that repeatedly send the same long system prompt or image, though the exact cache discount rate has not been disclosed.

What It Can Do — Concrete Vision Use Cases

Qwen3.7 Flash is built for reasoning and agentic tasks that involve images. Documented use cases include:

- Object recognition and spatial understanding
- Perception of real-world scenes
- Visual coding (generating code from UI screenshots)
- Computer-use-style agentic tasks that read and act on screen content
- Visual search
- OCR and document parsing (invoices, forms)
- UI and screenshot analysis

What It Can't Do — Constraints to Check Before Adopting

- Closed weights mean no on-premises or local deployment
- No video input support (video is reportedly a Qwen3.7 Plus capability)
- Output is text only; no image or audio generation
- Undisclosed parameter count and architecture make it hard to judge long-term performance stability or SLA
- Using the China-region DashScope API raises data-residency and compliance questions that need to be checked

How to Use It — OpenRouter and DashScope

Qwen3.7 Flash is accessible via OpenRouter or Alibaba's DashScope, both through an OpenAI-compatible API. Below is a Python example using OpenRouter.

import openai

client = openai.OpenAI(
    base_url="https://openrouter.ai/api/v1",
    api_key="YOUR_OPENROUTER_API_KEY",
)

response = client.chat.completions.create(
    model="qwen/qwen3.7-flash",
    messages=[
        {
            "role": "user",
            "content": [
                {"type": "text", "text": "Please summarize the total amount shown in this invoice image."},
                {
                    "type": "image_url",
                    "image_url": {"url": "https://example.com/invoice.png"},
                },
            ],
        }
    ],
)

print(response.choices[0].message.content)

Images can be passed as a URL or base64 data, and the model supports function calling and structured output. For the usage pattern of the higher-tier model in the same family, see our guide to Qwen3.6 Plus's agentic coding capabilities.

How It Compares — Where It Fits

ModelPrice positioningWeightsBest fit
Qwen3.7 FlashAmong the cheapest (see relative comparison below)ClosedLow-cost automation of bulk image/document processing
Gemini 3.5 Flash-LiteReportedly ~10x input / ~19x output cost of Qwen3.7 FlashClosedWorkloads tied to the Google ecosystem
Local open-weight models (e.g. the DeepSeek family)Requires separate hardware investmentOpenUse cases requiring local deployment for confidentiality

According to reported relative pricing, Qwen3.7 Flash costs roughly one-tenth of Gemini 3.5 Flash-Lite on input tokens and about one-nineteenth on output tokens, making it one of the cheapest multimodal models with a 1M-token context window. For pricing comparisons with other models, see our API pricing comparison of GPT-5.6 and Grok 4.5, and for a local-deployment alternative, see our requirements guide for running DeepSeek V4.

Where It Fits for Small and Midsize Businesses

Qwen3.7 Flash is a candidate for low-cost automation of routine image-related tasks — invoice and form OCR, bulk product-image classification, or UI screenshot analysis — where its 1M-token context and low unit price suit batch processing.

For workloads involving highly sensitive images or documents, the fact that weights are closed and data handling depends on an external API is worth weighing against running an open-weight model locally instead.

FAQ

Can Qwen3.7 Flash be run locally?

No. Its weights are closed and proprietary, so it can only be accessed via API through OpenRouter or DashScope.

How much does it cost?

OpenRouter lists $0.03 per million input tokens and $0.13 per million output tokens at the base tier. DashScope's official pricing rises to $0.10/$0.40 for the 32K-256K context tier and $0.20/$0.80 for the 256K-1M tier.

Does it support video?

No. Qwen3.7 Flash accepts only text and image input; video input is reportedly a capability of the higher-tier Qwen3.7 Plus.

How many parameters does it have?

This is undisclosed. Some in the community speculate it uses a small mixture-of-experts architecture, but this has not been officially confirmed.

What is it best suited for?

Vision-related reasoning and agentic tasks such as object recognition, spatial understanding, OCR/document parsing, and UI screenshot analysis.

References

Feel free to contact us

Contact Us