Qwen: Qwen3.7 Flash

OpenRouterQuality: 78/100Serving
Try in Playground
✓ Vision✗ Reasoning✓ Tool Use✓ Streaming✓ System Messages

Overview

Qwen: Qwen3.7 Flash is a capable model from OpenRouter with a 1M context window, supporting vision understanding, function calling. Priced at $0.000030/1K input, $0.000130/1K output.

ANT Routing Intelligence

Total Requests

71

Success Rate

100%

P50 Latency

0ms

P95 Latency

0ms

Selection Rate

0.4%

of eligible requests

Intelligence Score

66/100

Quick Start

from openai import OpenAI

client = OpenAI(
    base_url="https://api.antbase.ai/v1",
    api_key="YOUR_ANT_API_KEY",
)

response = client.chat.completions.create(
    model="qwen/qwen3.7-flash",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)