@gladiaio/n8n-nodes
v0.1.1
Published
Gladia Speech to Text Node
Downloads
122
Readme
Gladia n8n nodes

This is an n8n community node. It lets you use Gladia in your n8n workflows.
Gladia is a speech-to-text API that provides fast and accurate audio transcription powered by AI, with support for 100+ languages, speaker diarization, translation, summarization, and more.
n8n is a fair-code licensed workflow automation platform.
Installation
Via the n8n UI (recommended)
- Open your n8n instance and go to Settings → Community Nodes.
- Click Install a community node.
- Enter
@gladiaio/n8n-nodesin the search field and select it. - Click Install and wait for the installation to complete.
- The Gladia node will be available in the nodes panel under Gladia.
Note: Community node installation requires a self-hosted n8n instance. This feature is not available on n8n Cloud free plans. See the n8n documentation for details.
Via npm (manual install)
If you manage your n8n instance manually, you can install the package directly:
npm install @gladiaio/n8n-nodesThen restart your n8n instance. The node will be picked up automatically.
Operations
Transcription
- Transcribe — Submit an audio file (via URL or binary data) for transcription and optionally wait for the result.
Supported options:
- Language detection (auto or specified)
- Code switching (multi-language audio)
- Speaker diarization (with min/max speaker count)
- Named entity recognition
- Sentiment analysis
- Subtitles generation (SRT, VTT)
- Summarization
- Translation to target languages
- Custom vocabulary
- Configurable polling interval and timeout
Credentials
- Sign up at gladia.io to get an API key.
- In n8n, go to Credentials → New → search for Gladia API.
- Paste your API key into the API Key field.
Compatibility
- Tested against n8n
1.x - Minimum recommended n8n version:
1.0.0
Usage
Transcribe from URL:
- Add the Gladia node to your workflow.
- Set Audio Source to
URLand provide a publicly accessible audio URL. - Enable Wait for Completion to receive the full transcript in the output, or disable it to get the transcription ID immediately and poll manually.
Transcribe from binary data:
- Pipe a binary file (e.g. from an HTTP Request or Read Binary File node) into the Gladia node.
- Set Audio Source to
Binary Dataand enter the binary field name (default:data). - The node will upload the file to Gladia and then start transcription.
