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-transcriptmagic

v0.1.0

Published

n8n community node for TranscriptMagic — fetch transcripts from YouTube, TikTok, Instagram, and Facebook videos.

Readme

n8n-nodes-transcriptmagic

n8n community node for TranscriptMagic — fetch transcripts from YouTube, TikTok, Instagram, and Facebook videos directly inside your n8n workflows.

Install

npm install n8n-nodes-transcriptmagic

Restart n8n. The node appears under TranscriptMagic in the picker.

Setup

  1. Create an API key in the TranscriptMagic dashboard. Keys begin with sk_live_.
  2. In n8n, add a new TranscriptMagic API credential and paste your key. The credential test validates the key without consuming a credit.

Operations

Transcript

POST a video URL, get back the transcript.

| Operation | Endpoint | | --- | --- | | YouTube | POST /api/youtube/transcript | | TikTok | POST /api/tiktok/transcript | | Instagram | POST /api/instagram/transcript | | Facebook | POST /api/facebook/transcript |

Account

| Operation | Endpoint | | --- | --- | | Get Credit Balance | GET /api/balance |

Output formats

The node exposes two output modes via Options → Output Format:

  • Normalized (default) — { text, platform, credits, url }. Hides per-platform shape differences so the same downstream nodes work across YouTube, TikTok, Instagram, and Facebook.
  • Raw — the upstream API response passed through verbatim. Use this when you need YouTube's per-line timed segments or platform-specific metadata (videoUrls, language, etc).

Error handling

  • Continue on fail is supported. A bad URL in a batch surfaces as a per-item error, and the rest of the batch keeps running.
  • Rate limits: when the API returns 429, the node honors Retry-After and retries once. The per-key limit is 120 requests/minute.

Example workflows

A ready-to-import quickstart workflow lives in examples/quickstart.json. Below are common patterns to copy.

1. Single-URL transcription

The minimal flow: trigger → transcribe → done.

  1. Manual Trigger
  2. TranscriptMagic
    • Resource: Transcript
    • Operation: YouTube (or TikTok / Instagram / Facebook)
    • URL: paste any public video URL
  3. Run. The output item contains text, platform, credits, and url.

2. Batch transcription with graceful failures

Process many URLs at once. Bad URLs surface as per-item errors without aborting the batch, and the node honors Retry-After on 429 automatically.

  1. Google Sheets / Airtable / Set node returning multiple items, each with a url field.
  2. TranscriptMagic node:
    • URL: ={{ $json.url }}
    • Settings → On Error: Continue
  3. Downstream Google Sheets (or any destination) to write transcripts back, keyed off the original url from the paired item.

3. Transcript → AI summary → notification

The classic insight-extraction pattern.

  1. Schedule Trigger (or Webhook, RSS Feed, Telegram, etc.)
  2. TranscriptMagic → fetch transcript
  3. OpenAI / Anthropic node — prompt with ={{ $json.text }}
  4. Slack / Email / Notion → deliver the summary

4. Pre-flight balance check

Before kicking off a big batch, verify you have credits left:

  1. TranscriptMagic — Resource: Account, Operation: Get Credit Balance
  2. IF={{ $json.credits >= 1000 }} → continue, else send an alert

This call does not consume a credit.

Links

License

MIT