Back to models
Qwen

qwen3.7-plus

能力与成本均衡,1M上下文,完整工具调用/函数调用/结构化输出/批量调用支持,适合代码库和Agent开发

Quick Stats

Context

1000K

Max Output

66K

Provider

Qwen

Specs

1

Modalities

in textout text

Specs & Platform Price (per 1M tokens)

Free
Free

Recommended Plan

qwen3.7-plus Starter Plan

Pay-as-you-go after top-up; $1 free credit for new users.

Buy Plan

API Endpoint

Model IDqwen/qwen3.7-plus

cURL

curl https://staging-dp.taotoken.io/v1/chat/completions \
  -H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen/qwen3.7-plus",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Python (openai SDK)

from openai import OpenAI

client = OpenAI(
    base_url="https://staging-dp.taotoken.io/v1",
    api_key="$TOKENPORTAL_API_KEY",
)

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

Start using this model

Sign up free, get an API key, and make your first call in 30 seconds.