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

@bedrijfsdatanl/n8n-nodes-prospectpro

v0.1.8

Published

n8n node for ProspectPro - Identify Dutch B2B ProspectPro in rapid time

Readme

n8n-nodes-prospectpro

n8n.io - Workflow Automation

An n8n community node for integrating with the ProspectPro API. This node allows you to manage and retrieve prospect, contact, pageview, and event data directly within your n8n workflows.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Nodes (Recommended)

  1. Go to Settings > Community Nodes in your n8n instance
  2. Select Install
  3. Enter n8n-nodes-prospectpro
  4. Agree to the risks and select Install

Docker (Quick Start)

Run n8n with the ProspectPro node pre-installed:

./run.sh

Then access n8n at http://localhost:5679

To update the node after making changes:

npm run build && docker-compose restart

Manual Installation

To get started:

npm install n8n-nodes-prospectpro

Credentials

You need a ProspectPro API key to use this node:

  1. Sign up at ProspectPro
  2. Get your API key from your account dashboard
  3. In n8n, create new credentials of type "ProspectPro API"
  4. Enter your API key

Supported Operations

Prospects Resource

Get Prospect

Retrieve a single prospect from ProspectPro.

Get Many Prospects

Search and retrieve multiple prospects with filtering options.

Update Prospect

Update prospect information in ProspectPro.

Pageviews Resource

Get Many Pageviews

Retrieve pageview data for prospects.

Contacts Resource

Get Many Contacts

Retrieve contact information.

Create Contact

Create a new contact in ProspectPro.

Update Contact

Update existing contact information.

Delete Contact

Remove a contact from ProspectPro.

Events Resource

Get Many Events

Retrieve event data.

Create Event

Create a new event in ProspectPro.

Delete Event

Remove an event from ProspectPro.

ProspectPro Trigger Node

The package also includes a trigger node that can poll for new or updated prospects. This node supports:

  • Filtering by qualification status
  • Filtering by tags
  • Filtering by audiences
  • Filtering by owner

The trigger will automatically track the last time it ran to only retrieve new or updated prospects.

Usage Examples

Basic Prospect Search

Retrieve prospects from ProspectPro:

{
  "resource": "prospects",
  "operation": "get_many",
  "additionalFields": {
    "rows": 10
  }
}

Create Contact for a Prospect

Create a new contact associated with a prospect:

{
  "resource": "contacts",
  "operation": "create",
  "prospectId": "123456",
  "firstName": "John",
  "lastName": "Doe",
  "email": "[email protected]"
}

Retrieve Recent Pageviews

Get recent pageviews data:

{
  "resource": "pageviews",
  "operation": "get_many",
  "additionalFields": {
    "rows": 20,
    "sort_by": "timestamp",
    "sort_order": "desc"
  }
}

Create a Custom Event

Log a custom event in ProspectPro:

{
  "resource": "events",
  "operation": "create",
  "prospectId": "123456",
  "eventType": "meeting_scheduled",
  "eventData": {
    "time": "2023-05-15T14:30:00Z",
    "notes": "Initial consultation"
  }
}

Trigger Node Example

Create an automated workflow that triggers when new qualified prospects are found:

{
  "label": 1,
  "tags": ["high-value", "inbound"],
  "owner": "12345678"
}

API Documentation

For detailed API documentation, visit docs.prospectpro.nl.

Compatibility

  • n8n version: 0.187.0 or later
  • Node.js version: 20.15 or later

Resources

Development

Prerequisites

  • Node.js 20.15 or later
  • npm or pnpm

Setup

# Clone the repository
git clone [your-repository-url]

# Install dependencies
npm install

# Build the node
npm run build

# Lint the code
npm run lint

Testing

To test the node locally:

  1. Build the node: npm run build
  2. Link it to your global n8n installation: npm link
  3. In your n8n directory: npm link n8n-nodes-prospectpro
  4. Start n8n: n8n start

OR

./run.sh

License

MIT

Support

If you encounter any issues or have questions:

  1. Check the ProspectPro API documentation
  2. Review the n8n community nodes documentation
  3. Open an issue in this repository

ProspectPro is a part of Bedrijfsdata.nl