Qwen 3.7 Max

Model Information

Display Name: Qwen 3.7 Max

API Model ID: qwen/qwen3.7-max

Category: Text To Text

Description: Qwen 3.7 Max is Alibaba's most capable reasoning model. Built for the agent era with extended thinking, function calling, and autonomous multi-step execution. **Key Features:** - 1M token context window - Up to 65K output tokens - Extended thinking with chain-of-thought reasoning - Function/tool calling (1000+ calls in autonomous mode) - JSON mode for structured outputs - Streaming support **Best For:** - Complex reasoning and analysis - Agentic workloads and autonomous execution - Coding and debugging - Long-context document processing

Context Window: 1,000,000 tokens

Max Output: 65,536 tokens

How to Use This Model

To use Qwen 3.7 Max via the HInow.ai API, use the model ID: qwen/qwen3.7-max

API Request Example (Chat/Text)


POST https://api.hinow.ai/v1/chat/completions
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "qwen/qwen3.7-max",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

Pricing

  • input: $3.38
  • output: $10.13

Available Parameters

  • temperature: Controls randomness (0-2). Default: 0.7 (Options: 0, 0.3, 0.5, 0.7, 1.0, 1.5, 2.0)
  • top_p: Nucleus sampling (0-1). Default: 0.9 (Options: 0.1, 0.5, 0.7, 0.9, 0.95, 1.0)
  • max_tokens: Max tokens to generate (1-65536) (Options: 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536)
  • response_format: Output format (Options: text, json_object)

Quick Reference

To use this model, set: "model": "qwen/qwen3.7-max"

Featured: Yes

Documentation: https://hinow.ai/models/qwen/qwen3.7-max

API Endpoint: https://api.hinow.ai/v1

Back to Models

Qwen 3.7 Max

Featured

qwen/qwen3.7-max

$3.38 / $10.13
per 1M tokens (in/out)

About

Qwen 3.7 Max is Alibaba's most capable reasoning model. Built for the agent era with extended thinking, function calling, and autonomous multi-step execution.

Key Features:

  • 1M token context window
  • Up to 65K output tokens
  • Extended thinking with chain-of-thought reasoning
  • Function/tool calling (1000+ calls in autonomous mode)
  • JSON mode for structured outputs
  • Streaming support

Best For:

  • Complex reasoning and analysis
  • Agentic workloads and autonomous execution
  • Coding and debugging
  • Long-context document processing

Capabilities

Text To Text
Context1000K tokens
Max Output66K tokens

Parameters

temperature

Controls randomness (0-2). Default: 0.7

00.30.50.71.01.52.0
top_p

Nucleus sampling (0-1). Default: 0.9

0.10.50.70.90.951.0
max_tokens

Max tokens to generate (1-65536)

2565121024204840968192163843276865536
response_format

Output format

textjson_object

Code Examples

curl -X POST https://api.hinow.ai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "qwen/qwen3.7-max",
    "messages": [
      {"role": "user", "content": "Hello! How are you?"}
    ],
    "parameters": {
      "temperature": "0",
      "top_p": "0.1",
      "max_tokens": "256",
      "response_format": "text"
    }
  }'