← Back to catalog
qwen

Qwen: Qwen3.6 35B-A3B

qwen/qwen3.6-35b-a3b
Get API key
Overview
Context
262K
Input / 1M
$0.25 / 1M tokens
Output / 1M
$1.49 / 1M tokens
Modalities
text, image
Quickstart

Drop the model ID into either endpoint — BitRouter speaks the OpenAI and Anthropic wire formats natively.

OpenAI-compatiblehttps://api.bitrouter.ai/v1/chat/completions
curl https://api.bitrouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $BITROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen/qwen3.6-35b-a3b",
    "messages": [{"role": "user", "content": "Hello"}]
  }'
Anthropic-compatiblehttps://api.bitrouter.ai/v1/messages
curl https://api.bitrouter.ai/v1/messages \
  -H "x-api-key: $BITROUTER_API_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen/qwen3.6-35b-a3b",
    "max_tokens": 1024,
    "messages": [{"role": "user", "content": "Hello"}]
  }'