Chat Qwen

Qwen 3.5 9B

Fast multilingual model with strong Arabic, image understanding and tool calling. Answers in seconds and handles a 262K context. The cheapest way to run vision work at scale: 8x more tokens per credit than premium models.

9.7B
Parameters
262K
Context Window
0.25×
Credit Rate
Starter
Min Tier

Overview

Full description coming soon. This model is available right now via the LLM Resayil API.

Specifications

Display Name Qwen 3.5 9B
Family Qwen
Category Chat
Parameters 9.7B
Context Window 262,144 tokens
Quantization Q4_K_M
Min Tier Starter
Status Available

Pricing

0.25×
credits per 1,000 tokens
1K 1 Credits
10K 3 Credits
100K 25 Credits
View Pricing Plans

Code Examples

from openai import OpenAI

client = OpenAI(
    base_url="https://llmapi.resayil.io/v1/",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="qwen3.5:9b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)

print(response.choices[0].message.content)
import anthropic

client = anthropic.Anthropic(
    base_url="https://llmapi.resayil.io/v1",
    api_key="YOUR_API_KEY"
)

message = client.messages.create(
    model="qwen3.5:9b",
    max_tokens=1024,
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)

print(message.content[0].text)
const response = await fetch(
    "https://llmapi.resayil.io/v1/chat/completions",
    {
        method: "POST",
        headers: {
            "Content-Type": "application/json",
            "Authorization": "Bearer YOUR_API_KEY"
        },
        body: JSON.stringify({
            model: "qwen3.5:9b",
            messages: [
                { role: "user", content: "Hello!" }
            ]
        })
    }
);

const data = await response.json();
console.log(data.choices[0].message.content);
curl https://llmapi.resayil.io/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "qwen3.5:9b",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'

Related Models

Start building with Qwen 3.5 9B

Prepaid credits, no subscription required — they never expire.