DocsIntegrationsPlaygroundPricing
Get API Key
Automation

n8n Integration

n8n is an open-source workflow automation tool that lets you connect SupaCrawlX to 400+ apps — Notion, Slack, Google Sheets, databases, and more — without writing backend code.

HTTP Request Node Setup

1

Create an HTTP Request node

In your n8n workflow, add a new HTTP Request node.

2

Set the URL

Enter the API URL, e.g. https://api.supacrawlx.com/v1/transcript

3

Set the Method

Choose GET for transcript/metadata or POST for crawl/batch endpoints.

4

Add the API key header

Under Headers, add: Name = x-api-key, Value = your API key.

5

Add query parameters

Under Query Parameters, add: url = {{ $json.videoUrl }} (or your dynamic value).

6

Connect and activate

Connect the node to your trigger and activate the workflow.

Example Config

HTTP Request node settings
URL:     https://api.supacrawlx.com/v1/transcript
Method:  GET
Headers:
  x-api-key: {{ $env.SUPACRAWLX_API_KEY }}
Parameters:
  url: {{ $json.videoUrl }}

Common Workflow Patterns

YouTube → Notion

Trigger when a new video is published, transcribe it, then write the transcript to a Notion database.

Web Scrape → AI Summary

Scrape a URL with SupaCrawlX, pass the Markdown content to an LLM node, and store the summary.

Batch Monitor

Every day at 9am, batch-transcribe the latest videos from a YouTube channel and email a digest.

Resources

SupaCrawlX API Reference →Community workflow examples →