NEAR AICloud
Sign inStart building
Qwen3.7 Max icon
Qwen3.7 Max
qwen/qwen3.7-max
1000K context|$2.8/M input tokens|$7.5/M output tokens| cache read

Qwen's most capable proprietary model with 1M context window. Strong at reasoning, coding, math, and multilingual tasks.

Input / M tokens
$2.8
Output / M tokens
$7.5
Cache read
Context
1000K

Sample code and API for Qwen3.7 Max

fetch("https://cloud-api.near.ai/v1/chat/completions", { method: "POST", headers: { "Authorization": "Bearer <YOUR-NEAR-AI-CLOUD-API-KEY>", "Content-Type": "application/json" }, body: JSON.stringify({ "model": "qwen/qwen3.7-max", "messages": [ { "role": "user", "content": "What is the meaning of life?" } ] }) })

You can also use NEAR AI Cloud with OpenAI's client API:

import OpenAI from "openai" const openai = new OpenAI({ baseURL: "https://cloud-api.near.ai/v1", apiKey: "<YOUR-NEAR-AI-CLOUD-API-KEY>", }) async function main() { const completion = await openai.chat.completions.create({ messages: [{ "role": "user", "content": "What is the meaning of life?" }], model: "qwen/qwen3.7-max", }) console.log(completion.choices[0]) } main()

Privacy & Execution

This is an Incognito model: it runs on a partner provider rather than inside a NEAR AI GPU TEE. Requests are routed through a shared NEAR AI API key, so your identity is not disclosed to the provider.

Your prompt content, however, is transmitted to and processed by Alibaba in accordance with their terms of service and privacy policy. Data is encrypted in transit, but execution happens outside of trusted hardware — there is no hardware-level privacy, attestation, or cryptographic proof of execution for this model.