All models

Eleven v3

elevenlabs/eleven-v3
ElevenLabs TTSSpeech Synthesis

ElevenLabs' most expressive TTS — emotion-rich, 70+ languages.

Quick start

# Inspect the price — a plain request returns the 402 challenge:
curl -i https://api.glianalabs.com/v1/infer \
  -H "content-type: application/json" \
  -d '{
    "model": "elevenlabs/eleven-v3",
    "text": "<text to speak>"
  }'

# Pay + run in one step with the mppx CLI (create a wallet: npx mppx account create):
npx mppx https://api.glianalabs.com/v1/infer \
  -J '{"model": "elevenlabs/eleven-v3", "text": "<text to speak>"}'

Examples

Parameters

Input
text string required

The text to convert into speech.

apply_text_normalization string optional
language_code string optional

ISO 639-1 language code to enforce.

next_text string optional
output_format string optional

File format of the output (e.g. png, jpeg, mp4).

previous_text string optional
seed integer optional

Random seed for reproducible results — same seed + inputs gives the same output.

voice_id string optional default: "21m00Tcm4TlvDq8ikWAM"

The ElevenLabs voice ID to use for generation.

voice_settings object optional
Output
Audio file (hosted URL)