import requests r = requests.post( "https://api.aimlapi.com/v1/chat/completions", headers={"Authorization": "Bearer " + AIMLAPI_KEY}, json={ "model": "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8", "messages": [ { "role": "user", "content": "Hello!" } ] }, ) print(r.json())
const r = await fetch("https://api.aimlapi.com/v1/chat/completions", { method: "POST", headers: { Authorization: `Bearer ${process.env.AIMLAPI_KEY}`, "Content-Type": "application/json", }, body: JSON.stringify({ "model": "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8", "messages": [ { "role": "user", "content": "Hello!" } ] }), }); console.log(await r.json());
curl -X POST https://api.aimlapi.com/v1/chat/completions \ -H "Authorization: Bearer $AIMLAPI_KEY" \ -H "Content-Type: application/json" \ -d '{"model":"Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8","messages":[{"role":"user","content":"Hello!"}]}'
OpenAI-compatible — swap the base URL and it works with your existing SDK.
| Type | Price |
|---|---|
| Input | |
| Output | |
The only documented caveat found for this exact model is that pricing varies by provider, with one listing noting Alibaba’s API rates may differ from other providers.
| Benchmark | Score | What it measures | Source | Retrieved |
|---|---|---|---|---|
| Intelligence | 11.9 | Composite score across standardised reasoning, knowledge and problem-solving evaluations, measured independently by Artificial Analysis | Source | September 22, 2026 |
| Math | 39.3 | Composite score across standardised mathematics evaluations, measured independently by Artificial Analysis | Source | September 22, 2026 |
| Model | Input | Output | Context | Best for |
|---|---|---|---|---|
Qwen3 Coder This page | Agentic workflows and structured output |
Qwen3 Coder has a 262,000 tokens context window and can return up to 65,536 tokens.
Qwen3 Coder takes text as input and returns text.
Use Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8 as the model id. Requests go to https://api.aimlapi.com/v1/chat/completions.
Qwen3 Coder became available on September 9, 2025.
Qwen3 Coder is priced at input $2.6 / 1M tokens, output $2.6 / 1M tokens.
Yes, Qwen3 Coder can stream responses as they are generated.
Qwen3 Coder was built by Alibaba Cloud.
Qwen3 Coder is a chat model built by Alibaba Cloud, described as a coding agent for text-to-text tasks.
Yes, it supports parallel tool calls, structured output, and tool use, and is described by Alibaba as a coding agent.
It supports parallel tool calls, tool use, and structured output alongside streaming responses.