Back to all APIs

Groq

inference

“Get API key” opens Groq’s console where you can sign in, claim free credits, and generate your key. “Documentation” shows how to set it up and call the API.

Ultra-fast LLM inference using LPU hardware. Supports Llama 3, Mixtral, and Gemma.

14,400 req/day, 30 req/min

Models

llama3-8b-8192llama3-70b-8192mixtral-8x7b-32768gemma-7b-it

Details

Auth: api_key
Uptime: 100% uptime · 7d
Avg latency: 145ms
Checked: 2h ago
Pricing: $0.05–$0.59 / 1M tokens
Rate limit: 14,400 req/day, 30 req/min
Free credits: Free tier, no card required
SDKs: pythonjavascript
Regions: us
Tags: llama3, mixtral, fast

Code snippets

206ms avg
from groq import Groq

client = Groq(api_key="YOUR_KEY")
res = client.chat.completions.create(
    model="llama3-8b-8192",
    messages=[{"role": "user", "content": "Hello"}]
)
print(res.choices[0].message.content)

Status history (7 days)

06-10
06-11
06-12
06-13
06-14
06-15
06-21