ModelsOk

qwen3.7-plus API pricing & access

qwen3.7-plus API pricing: Dynamic usage-based pricing. Compare supported endpoints, capabilities and access options on ModelsOk.

qwen3.7-plus API access

qwen3.7-plus。支持文本、图像、视频输入,输出文本。所列规格依据厂商公开资料,实际可用功能与上限以所选服务渠道为准。

Compare supported API endpoints and capabilities, then access qwen3.7-plus through the unified API gateway.

Category
text
Context length
1000000 tokens
Maximum output
131072 tokens
Supported APIs
OpenAI Chat Completions API, Anthropic Messages API
API endpoints
POST /v1/chat/completions, POST /v1/messages
Input modalities
text, image, video
Output modalities
text
Capabilities
function calling, structured output, caching

qwen3.7-plus API pricing

Billing model
Dynamic usage-based pricing

The final API price depends on the matched usage tier, request parameters and access group. Open the live pricing page for the current calculation.

How to call qwen3.7-plus

qwen3.7-plus is served through ModelsOk's unified gateway. Existing OpenAI or Anthropic SDK code keeps working: point base_url at https://modelsok.com and use your ModelsOk API key.

curl (OpenAI-compatible)

curl https://modelsok.com/v1/chat/completions \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "qwen3.7-plus", "messages": [{"role": "user", "content": "Hello"}]}'

Python (openai SDK)

from openai import OpenAI

client = OpenAI(base_url="https://modelsok.com/v1", api_key="YOUR_API_KEY")
response = client.chat.completions.create(
    model="qwen3.7-plus",
    messages=[{"role": "user", "content": "Hello"}],
)
print(response.choices[0].message.content)

Python (anthropic SDK)

from anthropic import Anthropic

client = Anthropic(base_url="https://modelsok.com", api_key="YOUR_API_KEY")
message = client.messages.create(
    model="qwen3.7-plus",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Hello"}],
)
print(message.content[0].text)

Frequently asked questions

Do I need to change my code to use qwen3.7-plus here?

No. The gateway speaks the OpenAI and Anthropic wire formats. Change base_url to https://modelsok.com and the API key; requests, streaming and tool calls stay the same.

How is qwen3.7-plus billed?

Usage is billed per token at the base price shown above (Dynamic usage-based pricing), deducted from a prepaid balance. Group-specific rates and cached-token discounts are applied on the live pricing page.

Is qwen3.7-plus available right now?

The status page publishes real-traffic availability, first-token latency and throughput for every model over the last 90 days, refreshed every minute.

Back to AI model API pricing