Alibaba's Qwen3 Coder model optimized for software development tasks including code generation, debugging, code review, and technical documentation with strong multilingual programming support.
131K tokens
1
available
Cheapest
Together AI
$0.80/1M tokens
Together AI
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: $0.20Out: $0.60 | 600 RPM / 1.0M TPM | us-east-1us-west-2 | Healthy | 0ms |
Use this model via Together AI with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.together.xyz/v1",
apiKey: process.env.TOGETHER_API_KEY,
});
const response = await client.chat.completions.create({
model: "Qwen/Qwen3-Coder",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Together AI API • OpenAI-compatible SDK