← All integrations

Automation

Use ScrapeUnblocker with n8n

n8n has no scraping node that survives modern anti-bot, but it has an HTTP Request node - and that is all you need. Point it at the ScrapeUnblocker endpoint and every workflow can pull unblocked pages: scheduled monitors, lead enrichment, price tracking, feeding an LLM. No code, no browser, no self-hosted proxy.

Example

HTTP Request node - POST to the ScrapeUnblocker endpoint

{
  "method": "POST",
  "url": "https://api.scrapeunblocker.com/getPageSource",
  "sendQuery": true,
  "queryParameters": {
    "url": "https://www.example.com",
    "parsed_data": "true"
  },
  "sendHeaders": true,
  "headerParameters": {
    "X-ScrapeUnblocker-Key": "YOUR_API_KEY"
  }
}

How it works

  1. Add an HTTP Request node to your workflow and set the method to POST.
  2. Use the getPageSource endpoint and pass the target URL as a query parameter.
  3. Add your API key as the X-ScrapeUnblocker-Key header.
  4. Set parsed_data=true to get JSON you can map directly into later nodes.

What you get

  • No custom code - a stock HTTP Request node is enough.
  • Anti-bot bypass for Cloudflare, DataDome, PerimeterX and Akamai.
  • parsed_data=true returns JSON that maps cleanly into downstream nodes.
  • Works in scheduled workflows, webhooks and AI/LLM chains alike.

Read the docs: API docs →

Start scraping in a few lines

500 requests free on signup. No card required to test it.