qwen3-32b — Free API

Created by Alibaba ⭐ Score: 47
groq/qwen3-32b
🛠️ Function Calling JSON Mode chat

What is qwen3-32b?

Qwen3-32B on Groq is Alibaba's latest mid-size model, recognized as one of the strongest coding models in the free tier ecosystem. Running on Groq's LPU hardware, it delivers near-instant first-token latency with 131K output ceiling — the high output cap is particularly valuable for code generation tasks that need to produce full files or functions. The free tier allows 14,400 requests per day at 30 RPM, making it practical for daily development use. OpenAI SDK compatible; pair it with Cursor, Claude Code, or any tool that accepts a custom base URL. Registration required, no credit card.

Model ID
qwen3-32b
Base URL
https://api.groq.com/openai/v1

qwen3-32b API Code Example

Paste your API key and run. See the config generator for Claude Code, Cursor, and more tools.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.groq.com/openai/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="qwen3-32b",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
import OpenAI from "openai";

const openai = new OpenAI({
  baseURL: "https://api.groq.com/openai/v1",
  apiKey: "YOUR_API_KEY",
});

const completion = await openai.chat.completions.create({
  model: "qwen3-32b",
  messages: [{ role: "user", content: "Hello!" }],
});

console.log(completion.choices[0].message.content);
curl https://api.groq.com/openai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "qwen3-32b",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Other Free Models from Groq

More About Groq

How to get an API key, rate limits, platform limitations, and tool configuration — everything you need to set up Groq as a free LLM API backend.

View Groq full guide →