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-get-transcribe

v0.1.4

Published

n8n node for GetTranscribe API integration - transcribe videos from Instagram, TikTok, YouTube and more

Readme

n8n-nodes-get-transcribe

This is an n8n node for integrating with the GetTranscribe API, which allows you to transcribe videos from social media platforms like Instagram, TikTok, YouTube, and more.

Features

Transcriptions

  • Create: Create a new transcription from a video URL
  • Get: Get a specific transcription by ID
  • List: List all transcriptions with optional filters

Folders

  • Create: Create new folders to organize transcriptions
  • List: List all folders
  • Update: Update properties of existing folders

User

  • Get: Get user information and account statistics

Installation

Installation on n8n Cloud

  1. Go to Settings > Community Nodes
  2. Search for n8n-nodes-get-transcribe
  3. Click Install

Installation on self-hosted n8n

  1. Go to your n8n installation root directory
  2. Run: npm install n8n-nodes-get-transcribe
  3. Restart n8n

Configuration

Credentials

To use this node, you need to configure your GetTranscribe credentials:

  1. In n8n, go to Credentials and create new credentials of type GetTranscribe API
  2. Enter your API Key from GetTranscribe
    • You can find your API Key in your GetTranscribe account settings
    • The API Key should have the format: gt_...

Credential test URL

The node will automatically verify your credentials by making a request to /users/me on the GetTranscribe API.

Usage

Create a Transcription

  1. Add the GetTranscribe node to your workflow
  2. Select Transcription as resource
  3. Select Create as operation
  4. Enter the URL of the video you want to transcribe
  5. Optionally, select a folder ID to organize the transcription

Supported URL examples:

  • Instagram: https://www.instagram.com/p/ABC123/
  • TikTok: https://www.tiktok.com/@user/video/123456789
  • YouTube: https://www.youtube.com/watch?v=ABC123

List Transcriptions

  1. Select Transcription as resource
  2. Select List as operation
  3. Configure optional filters:
    • Limit: Maximum number of results
    • Skip: Number of results to skip (for pagination)
    • Folder ID: Filter by specific folder
    • Platform: Filter by platform (Instagram, TikTok, YouTube)

Folder Management

Create Folder

  1. Select Folder as resource
  2. Select Create as operation
  3. Enter the folder name
  4. Optionally, specify a parent folder ID to create subfolders

List Folders

  1. Select Folder as resource
  2. Select List as operation
  3. Configure the result limit

User Information

  1. Select User as resource
  2. Select Get as operation
  3. Enter your user ID (you can use your own ID)

API Response

Transcription

{
  "id": 4032,
  "user_id": 2,
  "transcription": "Transcribed text from the video...",
  "platform": "instagram",
  "url": "https://www.instagram.com/p/DM1P8q1MzaG/",
  "thumbnail_url": "https://...",
  "download_video_url": "https://...",
  "download_audio_url": "https://...",
  "duration": "0:30",
  "duration_seconds": 30.159864,
  "word_count": 91,
  "char_count": 515,
  "folder_id": null,
  "transcription_analysis": null,
  "original_transcription": "Original text...",
  "transcription_segments": [...],
  "transcription_words": [...],
  "created_at": "2025-08-07T17:43:15.822Z",
  "updated_at": "2025-08-07T17:43:15.822Z"
}

Workflow Examples

Automatic Transcription from Webhook

  1. Webhook Trigger - Receives video URLs
  2. GetTranscribe Node - Transcribes the video
  3. Set Node - Processes the transcribed text
  4. HTTP Request - Sends the transcription to another service

Batch Processing

  1. Schedule Trigger - Runs periodically
  2. GetTranscribe Node - Lists pending transcriptions
  3. If Node - Checks if there are new transcriptions
  4. Loop - Processes each transcription

Support

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch
  3. Commit your changes
  4. Push to the branch
  5. Open a Pull Request

Contributors

Thanks to all the people who have contributed to this project:

License

MIT

Changelog

v0.1.1

  • Updated GitHub repository URLs in package.json

v0.1.0

  • Initial release
  • Support for transcriptions (create, get, list)
  • Support for folders (create, list, update)
  • Support for user information
  • API Key authentication