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 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-vatis-transcribe

v0.1.10

Published

Vatis Transcribe Node for N8N Automations for Vatis Tech.

Readme

n8n-nodes-vatis-transcribe

This is an n8n community node package for Vatis Transcribe. It lets you send audio or video for transcription, poll processing status, and download structured transcript JSON directly from your n8n workflows.

Vatis provides speech-to-text and related audio intelligence features via HTTP APIs. This node wraps the upload, stream status, and JSON export endpoints so you do not have to build raw HTTP requests yourself.

n8n is a fair-code licensed workflow automation platform.

Installation · Operations · Credentials · Compatibility · Usage · Resources · Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

In short: open Settings → Community nodes, enter n8n-nodes-vatis-transcribe, and install the package (or use the CLI flow described in the docs).

Operations

The Vatis Transcribe node groups actions by resource and operation:

| Resource | Operation | What it does | | -------- | --------- | ------------- | | Transcribe | Create Transcript | Uploads media (binary field or URL) and starts a transcription stream. Returns identifiers you use in later steps (for example streamId). | | Stream | Get Transcript Status | Reads the current status and metadata for a stream by streamId (poll until processing finishes). | | Export | Get Transcript JSON | Downloads the full transcription and intelligence payload as JSON for a completed streamId. |

Details such as languages, diarization, and optional intelligence features are configured in the node UI when Create Transcript is selected.

Credentials

Authentication uses the Vatis Transcribe API credential type (HTTP Authorization: Basic with your API key), matching Vatis API access.

  1. Sign up or log in at Vatis and obtain an API key from their documentation: Get API access.
  2. In n8n, create credentials Vatis Transcribe API and paste your API key.
  3. Use Test on the credential if you want to verify connectivity before running workflows.

Compatibility

This package is built with the official n8n node tooling (n8n-node) and targets current n8n community node conventions. Use a recent n8n release that supports community nodes (see Community nodes).

If you hit a version-specific issue, check your n8n version and the changelog / releases for this repository.

Usage

Example: transcribe a file URL and fetch JSON when ready

  1. Add Vatis Transcribe → resource Transcribe → operation Create Transcript. Choose Media URL, paste a publicly reachable audio or video URL, and set languages and options as needed. Execute the node and note streamId in the output JSON.
  2. Add another Vatis Transcribe node (or loop): resource StreamGet Transcript Status, using the same credential and the streamId from step 1. Repeat until the API reports a terminal success state for your workflow (for example with Wait between polls).
  3. Add Vatis Transcribe → resource ExportGet Transcript JSON with that streamId to retrieve the final structured transcript.

You can combine this with n8n’s IF, Wait, Merge, or Split In Batches nodes depending on how you want to poll and branch on status.

By the time users install community nodes, they usually know n8n basics; if not, see Try it out.

Resources

Maintainer release flow (n8n verification)

To satisfy n8n verification requirements, publish from GitHub Actions only (not from a local machine).

  1. Configure npm Trusted Publisher for this repository and publish.yml.
  2. Run npm run release locally to bump version, create tag (v*), and push.
  3. The publish.yml workflow publishes with npm publish --provenance --access public.

Version history

Published versions and release notes are tracked on npm and GitHub Releases.