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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@techulus/n8n-nodes-capture

v0.1.1

Published

n8n node for Capture Page API - capture website screenshots, generate PDFs, extract content and metadata

Readme

n8n Nodes - Capture

This is an n8n community node for Capture - a powerful API for capturing website screenshots, generating PDFs, extracting content, and retrieving metadata.

Capture

Capture provides a reliable and fast API for web page capture with features like:

  • High-quality screenshots in multiple formats
  • PDF generation with custom formatting
  • Content extraction (HTML and text)
  • Metadata extraction (titles, descriptions, etc.)
  • Mobile and desktop viewport simulation
  • Ad/tracker blocking capabilities

Prerequisites

You need to have an account with Capture to use this node. You can sign up at https://capture.page/console.

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

This node supports all four Capture API endpoints:

Screenshot

Capture website screenshots with customizable options:

  • Viewport dimensions - Set custom width and height
  • Full page - Capture entire scrollable content
  • Format - PNG, JPEG, or WebP
  • Output - Binary data or URL only

PDF

Generate PDFs of web pages:

  • Format - A4, A3, A5, Letter, Legal, Tabloid
  • Orientation - Portrait or landscape
  • Full page - Include entire scrollable content
  • Output - Binary data or URL only

Content

Extract HTML content and plain text from web pages:

  • Returns structured JSON with HTML and text content
  • Useful for content analysis and processing

Metadata

Extract metadata from web pages:

  • Page titles, descriptions, Open Graph data
  • Social media metadata
  • SEO-related information

Configuration

Credentials

You'll need to configure Capture API credentials:

  1. Go to SettingsCredentials in your n8n instance
  2. Create new credentials for Capture API
  3. Enter your API Key and API Secret from Capture Console

Additional Options

All operations support additional options:

  • User Agent - Custom user agent string
  • Wait For Selector/ID - CSS selector or element ID to wait for
  • Block Ads/Trackers/Cookie Banners - Block advertisements, tracking scripts, and cookie popups
  • Dark Mode - Enable dark mode rendering
  • Mobile - Emulate mobile device
  • Device Emulation - Emulate specific devices (iPhone X, etc.)
  • HTTP Authentication - Basic authentication support
  • Fresh - Force new capture, ignore cache
  • Bot Detection Bypass - Bypass anti-bot systems
  • Element Selection - Screenshot specific elements
  • Transparent Background - PNG transparency support
  • Best Format - Auto-select optimal image format
  • Custom Filenames - Set custom file names

Example Workflows

Basic Screenshot

{
  "operation": "screenshot",
  "url": "https://example.com",
  "viewportWidth": 1200,
  "viewportHeight": 800,
  "format": "png",
  "output": "binaryData"
}

Mobile Screenshot with Dark Mode

{
  "operation": "screenshot",
  "url": "https://example.com",
  "viewportWidth": 375,
  "viewportHeight": 667,
  "additionalOptions": {
    "darkMode": true,
    "blockAds": true
  }
}

PDF Generation

{
  "operation": "pdf",
  "url": "https://example.com",
  "pdfFormat": "A4",
  "orientation": "portrait",
  "pdfOutput": "binaryData"
}

Content Extraction

{
  "operation": "content",
  "url": "https://example.com"
}

Resources

Support

For issues related to this n8n node, please create an issue in this repository.

For Capture API related issues, please contact Capture Support.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.