llama-3.3-70b-versatile — Free API

Created by Meta ⭐ Score: 45
groq/llama-3-3-70b-versatile
🛠️ Function Calling JSON Mode chat

What is llama-3.3-70b-versatile?

Llama 3.3 70B on Groq delivers Meta's flagship 70B model with Groq's ultra-fast LPU inference — expect dramatically lower latency compared to GPU-based providers. With 131K context, 32K output, and OpenAI SDK compatibility, it is one of the fastest ways to access a proven 70B-class model for interactive applications. The free tier is generous: 14,400 requests per day at 30 RPM, making it viable for moderate production workloads. Registration is required but no credit card is needed. If your application values response speed above all else, this Groq + Llama 3.3 combination is hard to beat.

Model ID
llama-3-3-70b-versatile
Base URL
https://api.groq.com/openai/v1

llama-3.3-70b-versatile 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="llama-3-3-70b-versatile",
    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: "llama-3-3-70b-versatile",
  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": "llama-3-3-70b-versatile",
    "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 →