Explore all available models on GroqCloud.
Note: Production models are intended for use in your production environments. They meet or exceed our high standards for speed, quality, and reliability. Read more here.
| MODEL ID | SPEED (T/SEC) | PRICE PER 1M TOKENS | RATE LIMITS (DEVELOPER PLAN) | CONTEXT WINDOW (TOKENS) | MAX COMPLETION TOKENS | MAX FILE SIZE |
|---|---|---|---|---|---|---|
560 | ContactSales | ContactSales | 131,072 | 131,072 | - | |
280 | ContactSales | ContactSales | 131,072 | 32,768 | - | |
openai/gpt-oss-120b | 500 | $0.15 input$0.60 output | 250K TPM1K RPM | 131,072 | 65,536 | - |
openai/gpt-oss-20b | 1000 | $0.075 input$0.30 output | 250K TPM1K RPM | 131,072 | 65,536 | - |
whisper-large-v3 | - | $0.111 per hour | 200K ASH300 RPM | - | - | 100 MB |
whisper-large-v3-turbo | - | $0.04 per hour | 400K ASH400 RPM | - | - | 100 MB |
Note: Preview models are intended for evaluation purposes only and should not be used in production environments as they may be discontinued at short notice. Read more about deprecations here.
| MODEL ID | SPEED (T/SEC) | PRICE PER 1M TOKENS | RATE LIMITS (DEVELOPER PLAN) | CONTEXT WINDOW (TOKENS) | MAX COMPLETION TOKENS | MAX FILE SIZE |
|---|---|---|---|---|---|---|
canopylabs/orpheus-arabic-saudi | - | $40.00 per 1M characters | 50K TPM250 RPM | 4,000 | 50,000 | - |
canopylabs/orpheus-v1-english | - | $22.00 per 1M characters | 50K TPM250 RPM | 4,000 | 50,000 | - |
meta-llama/llama-prompt-guard-2-22m | - | $0.03 input$0.03 output | 30K TPM100 RPM | 512 | 512 | - |
meta-llama/llama-prompt-guard-2-86m | - | $0.04 input$0.04 output | 30K TPM100 RPM | 512 | 512 | - |
260 | ContactSales | ContactSales | 196,608 | 131,072 | - | |
openai/gpt-oss-safeguard-20b | 1000 | $0.075 input$0.30 output | 150K TPM1K RPM | 131,072 | 65,536 | - |
qwen/qwen3.8-27b | 450 | $0.80 input$4.00 output | 250K TPM1K RPM | 131,042 | 16,384 | 20 MB |
Deprecated models are models that are no longer supported or will no longer be supported in the future. See our deprecation guidelines and deprecated models here.
Hosted models are directly accessible through the GroqCloud Models API endpoint using the model IDs mentioned above. You can use the https://api.groq.com/openai/v1/models endpoint to return a JSON list of all active models:
curl -X GET "https://api.groq.com/openai/v1/models" \
-H "Authorization: Bearer $GROQ_API_KEY" \
-H "Content-Type: application/json"import Groq from "groq-sdk";
const groq = new Groq({ apiKey: process.env.GROQ_API_KEY });
const getModels = async () => {
return await groq.models.list();
};
getModels().then((models) => {
// console.log(models);
});import requests
import os
api_key = os.environ.get("GROQ_API_KEY")
url = "https://api.groq.com/openai/v1/models"
headers = {
"Authorization": f"Bearer {api_key}",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())