Qwen 3.7 API Resources

Qwen 3.7 API Resources

Qwen 3.7 is useful to test for coding, agent workflows, multilingual tasks, and cost-sensitive OpenAI-compatible API usage.

lizh.ai is an independent OpenAI-compatible API gateway. It is not the official Alibaba API website.

Core setup values

Current pricing snapshot

Model Provider Input Output Cache hit
qwen3.7-plus Alibaba $0.5714 / 1M tokens $2.29 / 1M tokens $0.0571 / 1M tokens
qwen3.7-max Alibaba $1.80 / 1M tokens $6.05 / 1M tokens $0.36 / 1M tokens

What to test first

  1. Create an API key at lizh.ai/keys.
  2. Send one short request to https://lizh.ai/v1/chat/completions.
  3. Use qwen3.7-plus or qwen3.7-max as the model ID.
  4. Move the same Base URL, API key, and model ID into Python, Cursor, Hermes, OpenClaw, or your backend.
  5. Check usage logs and pricing before long-context or agent workflows.

Useful scenarios

  • AI coding and code review in Cursor-style tools.
  • Multilingual writing, translation, and knowledge work.
  • Agent workflows that need a strong general model through one API gateway.
  • Comparing Qwen against Kimi, GLM, DeepSeek, and MiniMax with the same request format.

Compare with related models

When evaluating Qwen 3.7, compare it with Kimi K3, GLM-5.2, DeepSeek V4, MiniMax M2.7 using the same prompt, output limit, and logging method.

Related guides

Qwen 3.7 API article directory

Use these question-led guides to test API keys, pricing, Python, cURL, Cursor, Claude Code, OpenClaw, Hermes, and the difference between official provider endpoints and lizh.ai.

ru

ar

ja

fr

vi

OpenAI-compatible request shape

curl https://lizh.ai/v1/chat/completions \
  -H "Authorization: Bearer YOUR_LIZH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen3.7-plus",
    "messages": [{"role": "user", "content": "Write a short API test plan."}],
    "max_tokens": 500
  }'