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

v1.1.0

Published

n8n community node for managing AdHub leads, statuses, tags, activities, and custom fields

Readme

n8n-nodes-adhubapp

An n8n community node package for AdHub — manage leads, tasks, activities, notes, custom fields, statuses, tags, and sources directly from your n8n workflows.

v1.0.0 — stable release. Some advanced features (sorting endpoints, task status updates) are under active development and will be added in upcoming minor versions.


Features

Action Node — AdHub App

| Resource | Operations | |---|---| | Lead | List, Create, Get, Update, Delete, Bulk Create, Bulk Delete, Bulk Update Fields, Bulk Sync Tags, Bulk Update Custom Fields, Timeline, Entries, List Query Fields | | Lead Activity | List, List Types, Create, Get, Update, Delete | | Lead Custom Field | List, Create, Get, Update, Delete | | Lead Note | List, Create, Get, Update, Delete | | Lead Source | List, Create, Get, Update, Delete | | Lead Status | List, Create, Get, Update, Delete | | Lead Tag | List, Create, Get, Update, Delete | | Task | List, Create, Get, Update, Delete, Complete, Bulk Complete, Bulk Delete |

The List Leads and List Tasks operations include a form-driven filter builder backed by the AdHub query builder API — pick fields, operators, and values from dropdowns without writing raw JSON.

Trigger Node — AdHub App Trigger

Reacts to AdHub webhook events. Configure which event types to listen for:

  • lead.created, lead.updated, lead.deleted (or lead.* for all lead events)
  • task.created, task.updated, task.deleted (or task.* for all task events)
  • * for all events

Installation

Via n8n UI (recommended)

  1. Open n8n → SettingsCommunity Nodes
  2. Click Install a community node
  3. Enter n8n-nodes-adhubapp
  4. Click Install

Self-hosted (manual)

npm install n8n-nodes-adhubapp

Then restart n8n. For Docker-based installs, add the package to your N8N_CUSTOM_EXTENSIONS path.


Authentication

  1. In n8n, go to CredentialsNew → search for AdHub App API
  2. Enter your n8n Integration Token from AdHub (Settings → Integrations → n8n)
  3. Click Test to verify — you should see a green "Connected" status

Usage

Filtering Leads

The List Leads operation supports two body modes:

  • Form — use the visual filter builder to add rules, pick fields from your AdHub account, set operators and values
  • JSON — paste a raw JSON body for full control

Example filter body (JSON mode):

{
  "per_page": 50,
  "filter": {
    "mode": "and",
    "rules": [
      { "field": "lead.status", "operator": "Equals To", "value": "New" },
      { "field": "lead.created_at", "operator": "This Week" }
    ]
  }
}

Webhook Trigger

The trigger node provides a webhook URL to paste into AdHub (Settings → Integrations → Webhooks). Each n8n workflow gets a unique webhook URL. Select the event types you care about in the trigger node — events that don't match are acknowledged and dropped without executing the workflow.


Compatibility

  • n8n ≥ 1.0.0
  • Node.js ≥ 18

License

MIT


Support