ElevenLabs

AI integration · 3 node(s).

00Overview

Every field below is exactly what you see in the Flomation editor. Fields marked ● live picker let you choose from a list pulled live from your account — no IDs to look up.

01Connecting ElevenLabs

Add your credentials as a Flomation environment secret, then pick them in each node. The connection fields are:

FieldTypeDetails
ElevenLabs API KeysecretRequiredsk_...
i
Pick an Environment on your flow (Flow Settings → Environment) so the secret resolves. Secret fields never show the value — they reference ${secrets.your_secret}.

02List

List Voices

elevenlabs/list_voices · Action

List all available ElevenLabs voices with their IDs, names, and characteristics

FieldTypeDetails
ElevenLabs API KeysecretRequiredsk_...

Returns: tool_result, voices, count, success, error

03Speech

Speech to Text

elevenlabs/speech_to_text · Action

Transcribe audio to text using ElevenLabs speech recognition

FieldTypeDetails
ElevenLabs API KeysecretRequiredsk_...
Audio data (base64-encoded). Provide this OR audio_url.secretbase64 audio data
URL to audio file. Provide this OR audio_base64.stringhttps://example.com/audio.mp3
Language code (ISO 639-1, e.g. 'en', 'fr', 'de'). Leave empty for auto-detect.stringen
Modelstringchoices: Scribe v1 (default)

Returns: tool_result, text, language_code, words, success, error

04Text

Text to Speech

elevenlabs/text_to_speech · Action

Convert text to spoken audio using ElevenLabs AI voices

FieldTypeDetails
ElevenLabs API KeysecretRequiredsk_...
Text to convert to speechtextRequiredHello, welcome to Flomation!
Voice ID (from list_voices, or use a name like 'Rachel', 'Adam')stringRequired21m00Tcm4TlvDq8ikWAM
Modelstringchoices: Multilingual v2 (best quality), Turbo v2.5 (low latency), Turbo v2 (low latency), English v1
Stability (0.0-1.0, higher = more consistent, lower = more expressive)string0.5
Similarity Boost (0.0-1.0, higher = closer to original voice)string0.75
Style exaggeration (0.0-1.0, v2 models only)string0.0
Use Speaker Boost (enhances voice clarity and presence)boolean
Output Formatstringchoices: MP3 (44.1kHz, 128kbps), MP3 (44.1kHz, 64kbps), MP3 (22.05kHz, 32kbps), PCM (16kHz), PCM (22.05kHz), PCM (24kHz), PCM (44.1kHz), u-law (8kHz, telephony)

Returns: tool_result, audio_base64, audio_format, audio_size_bytes, character_count, success, error

05Notes & Limitations

Behaviours and constraints worth knowing before you build with these nodes.