Qwen, behind an OpenAI API
Configure your credentials and get an API key for Cline, LangChain, or any OpenAI-compatible client.
The Qwen account that the proxy browser session uses to log into chat.qwen.ai
Use this as the Authorization: Bearer token
Cline (VS Code) Setup
1. Open Cline settings in VS Code
2. API Provider: OpenAI Compatible
3. Base URL:
4. API Key: sk-qwen-b6b0m4hq124dbv0dhwts7qsj4iook4nu
5. Model: qwen3.7-plus (or qwen3.8-max)
# Or test with curl:
curl -N /chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-qwen-b6b0m4hq124dbv0dhwts7qsj4iook4nu" \
-d '{"model":"qwen3.7-plus",
"messages":[{"role":"user","content":"Hi"}],
"stream":true}'