Qwen3.8 27B
by alibaba · family qwen3
Facts
| Release date | 2026-08-14 |
|---|---|
| Retired date | — |
| Knowledge cutoff | — |
| Context (max) | 262,144 |
| Max output | 65,536 |
| Modalities | text, image → text |
| Aliases | Qwen/Qwen3.8-27B |
| Open weights | yes |
| Description | Dense 27B with hybrid thinking, 262K context, vision input. Release date per third-party reporting. |
Unknown values are shown as —.
Intelligence Index v4.1.1: 52 · base · Source: Artificial Analysis (accessed 2026-08-20)
Offerings
| Provider | Wire ID | Variant | Endpoint | Protocol | Status | Price (USD / Mtok) | Reasoning |
|---|---|---|---|---|---|---|---|
| Hetzner Inference (Experiments) | Qwen/Qwen3.8-27B | chat | openai-chat | preview | 0.00 / 0.00 | toggle · default on · returns reasoning_content | |
| IO Intelligence (io.net) | Qwen/Qwen3.8-27B | chat | openai-chat | ga | 0.45 / 3.25 | effort · default on · returns reasoning_content | |
| NEAR AI Cloud | Qwen/Qwen3.8-27B | chat | openai-chat | ga | 0.44 / 3.30 | toggle · default on · returns reasoning_content | |
| OpenRouter | qwen/qwen3.8-27b | chat-completions | openai-chat | ga | 0.45 / 3.20 | effort · default on · returns reasoning_content · round-trips reasoning_content | |
| Synthetic | hf:Qwen/Qwen3.8-27B | openai-chat | openai-chat | ga | — | adaptive · default on · returns hidden | |
| Synthetic | syn:small:vision | openai-chat | openai-chat | ga | — | effort · default on · returns reasoning_content |
Reasoning controls
Hetzner Inference (Experiments)· Qwen/Qwen3.8-27B· chat toggle
chat_template_kwargs.enable_thinking on true · off false
toggle · default on · returns reasoning_content
IO Intelligence (io.net)· Qwen/Qwen3.8-27B· chat effort
reasoning.effort nonelowmediumhigh● Default not documented — verify.
effort · default on · returns reasoning_content
NEAR AI Cloud· Qwen/Qwen3.8-27B· chat toggle
chat_template_kwargs.enable_thinking on true · off false
toggle · default on · returns reasoning_content
OpenRouter· qwen/qwen3.8-27b· chat-completions effort
reasoning.effort nonelowmedium●highxhighmax
effort · default on · returns reasoning_content · round-trips reasoning_content
Synthetic· hf:Qwen/Qwen3.8-27B· openai-chat adaptive
adaptive · default on · returns hidden
Synthetic· syn:small:vision· openai-chat effort
reasoning_effort lowmediumhigh●
effort · default on · returns reasoning_content
Example requests
Hetzner Inference (Experiments) · openai-chat · Qwen/Qwen3.8-27B
curl 'https://inference.hetzner.com/api/v1/chat/completions' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "Qwen/Qwen3.8-27B",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"chat_template_kwargs": {
"enable_thinking": true
}
}'Python (requests)
import requests
resp = requests.post(
"https://inference.hetzner.com/api/v1/chat/completions",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "Qwen/Qwen3.8-27B",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"chat_template_kwargs": {
"enable_thinking": true
}
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://inference.hetzner.com/api/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "Qwen/Qwen3.8-27B",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"chat_template_kwargs": {
"enable_thinking": true
}
}),
})
console.log(await resp.json())IO Intelligence (io.net) · openai-chat · Qwen/Qwen3.8-27B
curl 'https://api.intelligence.io.solutions/api/v1/chat/completions' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "Qwen/Qwen3.8-27B",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "high"
}
}'Python (requests)
import requests
resp = requests.post(
"https://api.intelligence.io.solutions/api/v1/chat/completions",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "Qwen/Qwen3.8-27B",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "high"
}
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://api.intelligence.io.solutions/api/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "Qwen/Qwen3.8-27B",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "high"
}
}),
})
console.log(await resp.json())NEAR AI Cloud · openai-chat · Qwen/Qwen3.8-27B
curl 'https://cloud-api.near.ai/v1/chat/completions' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "Qwen/Qwen3.8-27B",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"chat_template_kwargs": {
"enable_thinking": true
}
}'Python (requests)
import requests
resp = requests.post(
"https://cloud-api.near.ai/v1/chat/completions",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "Qwen/Qwen3.8-27B",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"chat_template_kwargs": {
"enable_thinking": true
}
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://cloud-api.near.ai/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "Qwen/Qwen3.8-27B",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"chat_template_kwargs": {
"enable_thinking": true
}
}),
})
console.log(await resp.json())OpenRouter · openai-chat · qwen/qwen3.8-27b
curl 'https://openrouter.ai/api/v1/chat/completions' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "qwen/qwen3.8-27b",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "medium"
}
}'Python (requests)
import requests
resp = requests.post(
"https://openrouter.ai/api/v1/chat/completions",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "qwen/qwen3.8-27b",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "medium"
}
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://openrouter.ai/api/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "qwen/qwen3.8-27b",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "medium"
}
}),
})
console.log(await resp.json())- ⚠ Responses include
reasoning_contentartifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss).
Synthetic · openai-chat · hf:Qwen/Qwen3.8-27B
curl 'https://api.synthetic.new/openai/v1/chat/completions' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "hf:Qwen/Qwen3.8-27B",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
}'Python (requests)
import requests
resp = requests.post(
"https://api.synthetic.new/openai/v1/chat/completions",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "hf:Qwen/Qwen3.8-27B",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://api.synthetic.new/openai/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "hf:Qwen/Qwen3.8-27B",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
]
}),
})
console.log(await resp.json())Synthetic · openai-chat · syn:small:vision
curl 'https://api.synthetic.new/openai/v1/chat/completions' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "syn:small:vision",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning_effort": "high"
}'Python (requests)
import requests
resp = requests.post(
"https://api.synthetic.new/openai/v1/chat/completions",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "syn:small:vision",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning_effort": "high"
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://api.synthetic.new/openai/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "syn:small:vision",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning_effort": "high"
}),
})
console.log(await resp.json())