LuluTokens
All models
Qwen

qwen3.6-plus

Alibaba

qwen3.6-plus

Earlier Qwen multimodal workhorse for million-token agent and document tasks

Context 1MReasoningToolsVision

Pricing

Entry tier — longer context costs more

Input

S$0.370S$0.311/M

Output

S$2.22S$1.87/M

Cache read

Reusing a prompt already cached upstream

S$0.037S$0.031/M

Cache write

Storing a prompt for later reuse

S$0.463S$0.389/M

Struck-through figures are the vendor's published list price.

Performance

Loading throughput, latency, and success rate…

The API is OpenAI-compatible — point the base URL here and pass the model id.

cURL
curl https://api.lulutokens.ai/v1/chat/completions \  -H "Authorization: Bearer $LULU_API_KEY" \  -H "Content-Type: application/json" \  -d '{    "model": "qwen3.6-plus",    "messages": [{"role": "user", "content": "Hello"}]  }'
Python
from openai import OpenAIclient = OpenAI(base_url="https://api.lulutokens.ai/v1", api_key="LULU_API_KEY")response = client.chat.completions.create(    model="qwen3.6-plus",    messages=[{"role": "user", "content": "Hello"}],)
Endpoints:openaiopenai-responseanthropic