npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-bozonx-stt-gateway-microservice

v1.3.0

Published

n8n node for synchronous transcription via STT Gateway microservice (AssemblyAI)

Downloads

407

Readme

n8n Node: Bozonx STT Gateway Microservice

Community node for n8n that performs synchronous speech-to-text transcription from a public audio URL via the STT Gateway microservice (default provider: AssemblyAI).

n8n is a fair-code licensed workflow automation platform.

Sections:

Installation

Follow the official community nodes installation guide: https://docs.n8n.io/integrations/community-nodes/installation/

How it works

The node sends a POST request to the microservice endpoint:

POST {{baseUrl}}/transcribe
Content-Type: application/json

{
  "audioUrl": "https://example.com/audio.mp3",
  "provider": "assemblyai",  
  "restorePunctuation": true,
  "language": "en",
  "formatText": true,
  "apiKey": "YOUR_ASSEMBLYAI_KEY"
}
  • Base URL comes from Credentials. It must include protocol (http/https) and the full path including /api/v1.
  • Authentication is configured in Credentials and supports None, Basic Auth, or Bearer Token.

Example successful response (200)

{
  "text": "Transcribed text...",
  "provider": "assemblyai",
  "requestId": "abc123",
  "durationSec": 123.45,
  "language": "en",
  "confidenceAvg": 0.92,
  "wordsCount": 204,
  "processingMs": 8421,
  "punctuationRestored": true
}

Parameters

  • Audio URL (string, required) Public HTTP(S) URL to the audio file.

  • Provider (options, optional) Speech-to-text provider. If omitted, the microservice uses its default provider. Available: assemblyai.

  • Restore Punctuation (boolean) Ask the provider to restore punctuation when supported. Default: true.

  • Language (string, optional) Explicit language code for the audio, e.g., en, ru, en-US. Value is trimmed and forwarded to the provider as-is. Leave empty to let the provider auto-detect when supported. See AssemblyAI's supported languages: https://www.assemblyai.com/docs/pre-recorded-audio/supported-languages.

  • Format Text (boolean) Whether to format text output (punctuation, capitalization). Default: true. When omitted the service still sends format_text: true to AssemblyAI.

  • Provider API Key (string, optional) Direct provider API key (BYO) when allowed by service policy.

Credentials

Use the STT Gateway API credentials:

  • Base URL (required) Full base URL of the STT Gateway microservice API (including /api/v1 or custom path). Example: https://stt-gateway.example.com/api/v1.

  • Authentication (options: None, Basic Auth, Bearer Token) Authentication method to use. Default: None.

  • Username and Password (for Basic Auth) Credentials for Basic authentication when selected.

  • Token (for Bearer Token) Bearer token for Authorization header when selected.

You can use expressions and environment variables, e.g.:

  • Base URL: {{$env.STT_GATEWAY_URL}}
  • Token: {{$env.STT_GATEWAY_TOKEN}}

Advanced

  • Continue On Fail is supported in the node Settings. On error the item will return { "error": "..." } and processing will continue for other items.
  • Default headers include Accept: application/json. Request body is JSON.

Compatibility

Built and tested with n8n 1.60.0+.

Resources

  • Service docs and API reference: see the repository root README.md and docs/API.md.
  • n8n community nodes docs: https://docs.n8n.io/integrations/#community-nodes