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

v0.1.1

Published

n8n community node for CrawlSnap — structured, on-demand data intelligence APIs (VectorSnap, PulseSnap, SubdoSnap).

Readme

n8n-nodes-crawlsnap

This is an n8n community node. It lets you use CrawlSnap in your n8n workflows.

CrawlSnap is a data intelligence platform that delivers structured, on-demand data through fast, typed HTTP APIs. This node exposes the CrawlSnap data products as n8n operations:

  • VectorSnap — IoC reputation enrichment (reputation, detections, categories, relationships) for a url, hash, IP, or domain.
  • PulseSnap — threat-intelligence pulse enrichment for a url, hash, IP, or domain.
  • SubdoSnap — paginated subdomain enumeration for a domain.

Installation · Credentials · Operations · Usage · Resources

Installation

Follow the community nodes installation guide in the n8n documentation.

In short: Settings → Community Nodes → Install, then enter n8n-nodes-crawlsnap.

Credentials

You need a CrawlSnap API key (starts with sk-cs-). Create and rotate keys from your CrawlSnap dashboard.

In n8n, create a CrawlSnap API credential and paste your key. The node authenticates every request with Authorization: Bearer <key>.

The credential Test button performs one real IP lookup to validate the key, which consumes a single request from your quota.

Operations

| Resource | Operation | Endpoint | | ---------- | ----------------- | ----------------------------- | | VectorSnap | Enrich URL | GET /v1/ioc/search/url | | VectorSnap | Enrich Hash | GET /v1/ioc/search/hash | | VectorSnap | Enrich IP | GET /v1/ioc/search/ip | | VectorSnap | Enrich Domain | GET /v1/ioc/search/domain | | PulseSnap | Scan URL | GET /v1/pulse-snap/scan/url | | PulseSnap | Scan Hash | GET /v1/pulse-snap/scan/hash| | PulseSnap | Scan IP | GET /v1/pulse-snap/scan/ip | | PulseSnap | Scan Domain | GET /v1/pulse-snap/scan/domain | | SubdoSnap | Scan Subdomains | GET /v1/subdo-snap/scan |

Each operation takes a single Query (the indicator to look up). The node returns the unwrapped data payload of the CrawlSnap response envelope.

Pagination (SubdoSnap)

Scan Subdomains is paginated. When more results are available the response contains a non-empty cursor. Pass it back via the Cursor field to fetch the next page.

Usage

  1. Add a CrawlSnap node to your workflow.
  2. Select a Resource (VectorSnap / PulseSnap / SubdoSnap) and Operation.
  3. Enter the Query — a URL, file hash, IPv4 address, or domain.
  4. Run. The node outputs the typed enrichment data.

The node is also usable as a tool by the n8n AI Agent node.

Compatibility

Requires n8n with n8nNodesApiVersion 1 (n8n 1.x). Tested on Node.js 20+.

Resources

Version history

| Version | Changes | | ------- | ------------------------------------------------------------------- | | 0.1.0 | Initial release: VectorSnap, PulseSnap, and SubdoSnap operations. |

License

MIT