Developer Dashboard

Back to Model Explorer

GroqAvailable on AvalAI

groq.whisper-large-v3-turbo API on AvalAI

groq.whisper-large-v3-turbo

groq.whisper-large-v3-turbo is an AI model from OpenAI that is available through AvalAI's OpenAI-compatible API.

Price display scale
Input price
Output price
Context window— tokens
Maximum output— tokens

Use groq.whisper-large-v3-turbo with the AvalAI API

Keep the API key in an environment variable and send requests from server-side code.

bash
curl https://api.avalai.ir/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $AVALAI_API_KEY" \
  -d '{"model": "groq.whisper-large-v3-turbo", "messages": [{"role": "user", "content": "Give a concise, practical solution."}]}'
python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AVALAI_API_KEY"],
    base_url="https://api.avalai.ir/v1",
)

response = client.chat.completions.create(
    model="groq.whisper-large-v3-turbo",
    messages=[{"role": "user", "content": "Give a concise, practical solution."}],
)

print(response.choices[0].message.content)
javascript
import OpenAI from "openai";

const client = new OpenAI({
  apiKey: process.env.AVALAI_API_KEY,
  baseURL: "https://api.avalai.ir/v1",
});

const response = await client.chat.completions.create({
  model: "groq.whisper-large-v3-turbo",
  messages: [{ role: "user", content: "Give a concise, practical solution." }],
});

console.log(response.choices[0].message.content);

Create an API keyRead the quickstart

Capabilities and endpoints

groq.whisper-large-v3-turbo rate limits

TierRPMTPM
Basic110,000
Tier 150100,000
Tier 2100150,000
Tier 3150200,000
Tier 4200250,000
Tier 5400400,000

Frequently asked questions

What is the groq.whisper-large-v3-turbo API on AvalAI?

Create an AvalAI API key and send the model ID groq.whisper-large-v3-turbo to one of the supported endpoints shown on this page.

How much does the groq.whisper-large-v3-turbo API cost on AvalAI?

The groq.whisper-large-v3-turbo API on AvalAI costs — per 1M input tokens and — per 1M output tokens.

What is the token cost for groq.whisper-large-v3-turbo?

Current AvalAI pricing for groq.whisper-large-v3-turbo is — for input and — for output.

What is the groq.whisper-large-v3-turbo context window?

The recorded maximum input context for groq.whisper-large-v3-turbo is — tokens.

What are the rate limits for groq.whisper-large-v3-turbo on AvalAI?

On tier 5, groq.whisper-large-v3-turbo on AvalAI supports up to 400 requests per minute and 400,000 tokens per minute.

What account tier is required to use groq.whisper-large-v3-turbo on AvalAI?

Calling groq.whisper-large-v3-turbo on AvalAI requires the Basic tier (tier 0) or higher.

Third-party data and freshness

  • Pricing, availability, endpoints, and rate limits: AvalAI structured data (authoritative)