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://whisper.mythosvpn.net/v1/transcribe \
-H "X-API-Key: YOUR_API_KEY" \
-F "[email protected]"
# Optional: specify language (ISO 639-1)
curl -X POST https://whisper.mythosvpn.net/v1/transcribe \
-H "X-API-Key: YOUR_API_KEY" \
-F "[email protected]" \
-F "language=en"
{
"text": "Hello, this is a transcription test.",
"language": "en",
"duration": 3.42,
"segments": [ ... ]
}
or pay $9 USDT (TRC20):
TWPreCf98j8LmPqia7RNT8cJcMqWMoNFuD
After USDT payment: message @startuplabot with TX ID + API key. Activated within 1h.
No signup, no credit card. Instant key generation.
Include your API key in every request via one of:
Authorization: Bearer YOUR_API_KEYX-API-Key: YOUR_API_KEYimport requests
with open("audio.mp3", "rb") as f:
r = requests.post(
"https://whisper.mythosvpn.net/v1/transcribe",
headers={"X-API-Key": "YOUR_KEY"},
files={"file": f}
)
print(r.json()["text"])
Use the HTTP Request node in n8n:
POSThttps://whisper.mythosvpn.net/v1/transcribeX-API-Key: YOUR_KEYmultipart/form-data, field file