Starter
18,000 seconds included (5 hours)
For product validation, small integrations, and early experiments.
Convert raw .ogg voice notes into plain text, detected language, and clean segment timestamps, with prepaid billing valid for 3, 6, 9, or 12 months depending on the plan.
Audiex Pro overview
Clean API, predictable billing, production-ready output
Input
Raw WhatsApp .ogg audio, posted as multipart/form-data or uploaded from your app.
Output
Simple JSON with transcript text, detected language, and cleaned segments.
Billing
Usage is measured in processed audio seconds, with a minimum of one second per request.
Access
Account access stays tied to Google sign-in for now.
Built for
Turn voice notes into structured data for support tickets, lead capture, and workflow automations without manually parsing audio.
Live Playground
One request in, plain JSON out. The layout below mirrors the request and response your production integration will use for the public text-only endpoint.
Request
Common SDKs and automation patterns
cURL request with auto language detection
curl -X POST \ "https://audiex.pro/v1/transcribe" \ -H "Authorization: Bearer sk_live_xxx" \ -F "file=@whatsapp-voice-note.ogg" \ -F "language=auto"
Authorization
Bearer token
Body
multipart/form-data
Audio
.ogg from WhatsApp
Response
Simple JSON with text and language
{ "status": "success", "text": "Let's ship the release.", "language": "en" }
Pricing
Pay-as-you-go, seconds stay valid for 3, 6, 9, or 12 months by plan, and there are no subscriptions hiding in the fine print.
Starter
18,000 seconds included (5 hours)
For product validation, small integrations, and early experiments.
Growth
54,000 seconds included (15 hours)
Ideal for a real feature launch, active users, and weekly processing.
Agency
162,000 seconds included (45 hours)
Built for client work, recurring operations, and multiple projects.
Enterprise
360,000 seconds included (100 hours)
For high-volume teams that want room to grow without re-buying each month.
API Documentation
POST /v1/transcribe is the public endpoint we document right now. It returns plain text, detected language, and cleaned segment timestamps from the live API.
Request overview
Technical limits
Standard error body
{ "status": "error", "detail": "Audio demasiado largo", "error": { "code": "payload_too_large", "message": "Audio demasiado largo" } }
Common status codes: 400, 401, 402, 413, 429, 500.
Example response shape
Public JSON with transcript text, detected language, and cleaned segment timestamps.
{ "status": "success", "text": "Let's ship the release.", "language": "en", "segments": [ { "start": 0.0, "end": 2.94, "text": "Let's ship the release." } ] }
Account access
The product already supports a clean API-first flow, and the social login layer can be enabled without changing the billing model.
Connect your identity
Use Google once sign-in is enabled on the account portal.
Claim trial access
The 10-minute trial stays tied to a real account instead of disposable email addresses.
Manage billing and usage
One account keeps seconds, invoices, and API access in the same place.
Account sign-in
Use Google to link your account and keep access in one place.
Terms of Service
Audiex Pro is a prepaid transcription service. Usage is measured in processed audio seconds, one second is deducted per real second transcribed with a minimum of one second per request, and unused seconds expire after 3, 6, 9, or 12 months depending on the plan purchased.
Refund Policy
If the service does not meet your expectations, we offer a 14-day refund for unused seconds. Requests are reviewed against account activity and the remaining seconds on the account.
Privacy & Compliance
Audio is deleted immediately after transcription. All API communication requires HTTPS. We do not retain voice data persistently, and the handling model is designed around GDPR and CCPA data-minimization and deletion principles.