Imole Quick Voice

Proprietary Imole lightweight TTS service exposed through the Imole API for fast speech generation without heavy GPU models.

Audio

Quick Voice technical docs

Endpoint, auth header, parameters, prices, and tested request examples for Imole Quick Voice.

Endpoint

Endpoint and pricing

POST /audio/speech Endpoint https://api.imole.app/v1 Base URL 10 API cauris 10 Agent cauris
Headers

Request headers

Authorization required

Bearer Imole API key.

Content-Type required

Use application/json for JSON requests.

Parameters

Request parameters

model required

Use imole-quick-voice.

text required

Text to synthesize.

provider

Engine selector.

edge, google
with_subtitles

Generate subtitles with the Edge route.

true, false
voice

Edge voice id, such as fr-FR-DeniseNeural.

rate

Edge speed adjustment.

pitch

Edge pitch adjustment.

volume

Edge volume adjustment.

lang

Google TTS language code.

slow

Google TTS slow mode.

true, false
tld

Google accent domain.

com, ca, co.uk
Examples

Tested request examples

Edge TTS
curl -X POST "https://api.imole.app/v1/audio/speech" \
  -H "Authorization: Bearer $IMOLE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "imole-quick-voice",
  "text": "Bonjour. Ceci est un test.",
  "voice": "fr-FR-DeniseNeural",
  "rate": "+0%",
  "pitch": "+0Hz",
  "volume": "+0%"
}'
Google TTS
curl -X POST "https://api.imole.app/v1/audio/speech" \
  -H "Authorization: Bearer $IMOLE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "imole-quick-voice",
  "provider": "google",
  "text": "Bonjour. Ceci est un test.",
  "lang": "fr",
  "slow": false,
  "tld": "com"
}'
Edge with subtitles
curl -X POST "https://api.imole.app/v1/audio/speech" \
  -H "Authorization: Bearer $IMOLE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "imole-quick-voice",
  "text": "Bonjour. Ceci est un test avec sous titres.",
  "with_subtitles": true,
  "voice": "fr-FR-DeniseNeural"
}'
Check job status
curl -H "Authorization: Bearer $IMOLE_API_KEY" "https://api.imole.app/v1/audio/jobs/$JOB_ID"
Download result
curl -L -H "Authorization: Bearer $IMOLE_API_KEY" "https://api.imole.app/v1/audio/jobs/$JOB_ID/content" -o imole-quick-voice.mp3