Fast, accurate speech-to-text powered by Groq's Whisper Large v3
POST /v1/transcribe Transcribe an audio file
GET /health Health check
curl -X POST https://your-host:3800/v1/transcribe \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "[email protected]"
# Optional: specify language (ISO 639-1)
curl -X POST https://your-host:3800/v1/transcribe \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "[email protected]" \
-F "language=en"
{
"text": "Hello, this is a transcription test.",
"language": "en",
"duration": 3.42,
"segments": [ ... ]
}
Include your API key in every request via one of:
Authorization: Bearer YOUR_API_KEYX-API-Key: YOUR_API_KEY