← All Models
GenX LM Pro v1 TR
GenX Pro transcription model. Transcribe audio to text at 92x realtime on dedicated GPU infrastructure.
Specifications
| Provider | GenX |
| Category | Audio |
Pricing (Starter tier)
0.59 credits / 60 seconds of audio
Higher tiers get volume discounts. See tiers
Quick Start
curl -X POST https://query.genx.sh/api/v1/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "genxlm-pro-v1-tr",
"params": {
"audio_url": "https://example.com/recording.mp3",
"include_timestamps": true
}
}'
Example Request Body
// POST /api/v1/generate
{
"model": "genxlm-pro-v1-tr",
"params": {
"audio_url": "https://example.com/recording.mp3",
"include_timestamps": true
}
}