Welcome to VerbalisAI API - Advanced Audio Transcription and Processing Platform
# Download audio file curl -L -o "audio.flac" "https://tinyurl.com/499rdjsh" # Make transcription request curl -X POST "https://api.verbalisai.com/api/audio/transcriptions" \ -H "Authorization: <YOUR_API_KEY>" \ -F "file=@audio.flac" \ -F "model=whisper-v3"
import requests # Transcribe audio file with open("audio.flac", "rb") as audio_file: response = requests.post( "https://api.verbalisai.com/api/audio/transcriptions", headers={"Authorization": "YOUR_API_KEY"}, files={"file": audio_file}, data={"model": "whisper-v3"} ) transcription = response.json() print(transcription["text"])
whisper-v3
whisper-v3-turbo
Create Account
Get API Key
Make Your First Request
https://api.verbalisai.com/api