Add web data to your n8n workflows with the Scrappey node
Scrappey ships a verified n8n node so you can pull clean HTML or LLM-ready Markdown from JavaScript-heavy and modern websites without writing code. Drop it into any visual workflow, paste your API key, and connect web data to over 1,000 other n8n apps and AI nodes.
Quick start
On n8n Cloud or self-hosted, install the verified Scrappey node from Settings, Community Nodes. The command above is for manual installs in a self-hosted instance.
npm install n8n-nodes-scrappey- 1
Install the Scrappey node
In a self-hosted n8n, open Settings, Community Nodes and install the verified Scrappey node (or run the npm command above). On n8n Cloud the verified node is available directly from the nodes panel.
bashnpm install n8n-nodes-scrappey - 2
Add your API key as a credential
Create a free account at https://app.scrappey.com/#/register to get your API key. In n8n, add a new Scrappey credential and paste the key. It is reused by every Scrappey node in the instance.
- 3
Add the node and set a URL
Click + in the editor, search for Scrappey, and add the node. Set the URL you want to collect and run the workflow. The node returns the page content as structured data you can pass downstream.
text// Scrappey node fields URL: https://example.com Markdown response: true // returns LLM-ready Markdown - 4
Or import the ready-made template
Open template 2299 in n8n, click Use this workflow, then replace YOUR_API_KEY and the test URL with your own. Connect any trigger or data source at the entry point and you have a working scraper in minutes.
Copy-paste examples
// n8n HTTP Request node
// Method: POST
// URL: https://publisher.scrappey.com/api/v1?key=YOUR_API_KEY
// Body Content Type: JSON
{
"cmd": "request.get",
"url": "https://example.com",
"markdown": true
}
// The response contains LLM-ready Markdown you can
// route into an AI node, a database, or a Sheet.Workflow shape:
1. Schedule Trigger (runs daily)
2. Code / Set node outputs an array of URLs
3. Split In Batches one URL per item
4. HTTP Request (Scrappey)
POST https://publisher.scrappey.com/api/v1?key=YOUR_API_KEY
Body (JSON):
{
"cmd": "request.get",
"url": "{{ $json.url }}",
"markdown": true
}
5. Set node map response to { url, content }
6. Google Sheets / Postgres append the rows
You only pay for successful requests, so failed items
in the batch cost nothing.Why use Scrappey in n8n
Verified node, no code
The Scrappey node is built by Scrappey and verified by n8n. Add it from the nodes panel, paste a key, and start collecting data visually.
Clean HTML or Markdown
Return ready-to-parse HTML or LLM-ready Markdown from JavaScript-heavy and modern websites, so AI nodes get usable input straight away.
Web access handling built in
Managed sessions, residential proxies, and full-browser rendering are handled for you. No proxy nodes or browser setup inside n8n.
Connect to 1,000+ apps
Pipe collected pages into AI agents, Google Sheets, databases, Slack, or any other n8n node to build complete automations.
Pay only for what works
A free trial to start, then pay-as-you-go. Residential proxies are included and failed requests are free, so retries do not inflate your bill.
Drop-in template
Template 2299 gives you a working scraping workflow you can import and customize in minutes instead of wiring nodes from scratch.
Popular use cases
AI agent research pipelines
Feed live web pages as Markdown into n8n AI nodes so agents summarize, classify, or answer questions over current public data.
Scheduled market and price monitoring
Run a Schedule Trigger that loops through product or competitor URLs and appends the parsed content to a sheet or database.
Lead and content enrichment
Look up a company or profile URL from a CRM record, collect the public page, and write structured fields back automatically.
No-code scraping for non-developers
Build a working data collection workflow visually, share it across the n8n instance, and let teammates reuse it without coding.
n8n FAQ
Do I need to write code to use Scrappey in n8n?
How do I get an API key?
What does it cost to run in n8n?
Can I get Markdown for AI nodes?
Is there a starter template?
Does it work on JavaScript-heavy sites?
More ways to plug Scrappey into your stack
Start building with Scrappey
Try it free. No subscription, no credit card, instant setup — your trial is waiting.