/
Log in Create Account

Qwen3.5-35B-A3B-256K API

Use Qwen3.5-35B-A3B-256K via TokenDock API. Input: $0.1374 / 1M tokens, Output: $1.1010 / 1M tokens. OpenAI-compatible endpoint.

Pricing

Direction TokenDock Price Provider List Price
Input (per 1M tokens) $0.1374 / 1M tokens $0.2290 / 1M tokens
Output (per 1M tokens) $1.1010 / 1M tokens $1.8350 / 1M tokens
Context window 256K tokens

Quick Start

TokenDock is OpenAI-compatible. Set base_url and model, and your existing OpenAI SDK code works unchanged.

Python
from openai import OpenAI

client = OpenAI(
    api_key="your-tokendock-api-key",
    base_url="https://tokendock.ai/v1",
)

response = client.chat.completions.create(
    model="qwen3.5-35b-a3b-256k",
    messages=[{"role": "user", "content": "Hello"}],
)
print(response.choices[0].message.content)

See also

Browse all available models · Pricing overview · Create account