# Qwen3.7 Flash - Core.Today AI API > Alibaba's Qwen3.7 Flash served through the OpenRouter aggregator - a low-cost vision-language reasoning model for multimodal agents, visual coding, search, and computer interaction, with strengths in object recognition and spatial understanding. 1M-token context, billed at OpenRouter's actual usage cost. - **Provider**: Alibaba Qwen - **Model ID**: qwen/qwen3.7-flash - **Category**: LLM - **Credits**: 0.1 per 1K tokens (avg, estimate) - **Speed**: Fast - **Quality**: High ## Model Specifications - **Context Window**: 1M tokens - **Max Output**: 66K tokens - **Training Cutoff**: Not published - **Supported Formats**: text, json, markdown - **Compatible SDK**: OpenAI ### Capabilities - Vision (image input) - Function Calling - Streaming - JSON Mode - System Prompt ### Token Pricing (per 1M tokens) - **Input Tokens**: 55.74 credits ($0.04) - **Output Tokens**: 241.54 credits ($0.16) - **Cached Tokens**: 11.148 credits ($0.01) ## Features - Very low cost - budget-tier input and output rates - 1M-token context window with multimodal input (text, image, video) - OpenAI-compatible API (chat completions) via /llm/openrouter/v1 - Prompt caching with discounted cache reads - Billed at OpenRouter's actual usage.cost - listed rates are estimates ## Use Cases - High-volume multimodal agents and screenshot/UI understanding - Visual coding and image-grounded Q&A - Cheap long-context search and summarization ## API Endpoint Base URL: https://api.core.today Endpoint: POST /llm/openrouter/v1/chat/completions ## Authentication Header: Authorization: Bearer YOUR_API_KEY Note: LLM endpoints use OpenAI-compatible format with Authorization Bearer token. ## Input Parameters ### Required - **model**: string - Model ID in vendor/model form, e.g. "qwen/qwen3.7-flash". - **messages**: array - Chat messages in OpenAI format (system/user/assistant roles). ### Optional - **temperature**: number (default: 0.7) - Sampling temperature (0-2). - **max_tokens**: integer (default: 2048) - Maximum completion tokens. - **stream**: boolean (default: false) - Stream the response as server-sent events. ## Examples ### Chat completion OpenAI-compatible chat completion request via OpenRouter ```json { "model": "qwen/qwen3.7-flash", "messages": [ { "role": "user", "content": "Summarize the attached report in 5 bullets." } ], "max_tokens": 1024 } ``` ## Response Format ```json { "id": "chatcmpl-abc123", "object": "chat.completion", "choices": [ { "index": 0, "message": { "role": "assistant", "content": "Response text here" }, "finish_reason": "stop" } ], "usage": { "prompt_tokens": 100, "completion_tokens": 50, "total_tokens": 150 } } ``` ## Tips - Works with the OpenAI SDK - set base_url to https://ai.api.core.today/llm/openrouter/v1 - Charged at OpenRouter's usage.cost x 1,858 credits/USD - the listed rates are estimates and may lag OpenRouter price changes - OpenRouter's shared pool for this model may intermittently return 429 - retry with exponential backoff rather than treating it as a hard failure ## Documentation https://openrouter.ai/qwen/qwen3.7-flash