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

@bubotek/n8n-nodes-kajabi

v1.0.2

Published

n8n community node for Kajabi API integration - manage contacts, customers, offers, courses, forms, and more

Downloads

119

Readme

@bubotek/n8n-nodes-kajabi

This is an n8n community node package for Kajabi - the all-in-one platform for online courses, memberships, and digital products.

n8n is a fair-code licensed workflow automation platform.

Installation Operations Credentials Compatibility Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

In n8n, go to Settings → Community Nodes → Install and enter:

@bubotek/n8n-nodes-kajabi

Or via npm:

npm install @bubotek/n8n-nodes-kajabi

Operations

Kajabi Node

The main Kajabi node supports the following resources and operations:

Contact

  • Create - Create a new contact
  • Get - Get a contact by ID
  • Get Many - Get all contacts with filters
  • Update - Update a contact
  • Delete - Delete a contact
  • Add Tags - Add tags to a contact
  • Remove Tags - Remove tags from a contact
  • Grant Offers - Grant offers to a contact
  • List Offers - List all offers for a contact
  • Revoke Offers - Revoke offers from a contact

Customer

  • Get - Get a customer by ID
  • Get Many - Get all customers with filters
  • Grant Offers - Grant offers to a customer
  • List Offers - List all offers for a customer
  • Replace Offers - Replace all offers for a customer
  • Revoke Offers - Revoke offers from a customer

Offer

  • Get - Get an offer by ID
  • Get Many - Get all offers
  • List Products - List all products included in an offer

Course

  • Get - Get a course by ID
  • Get Many - Get all courses

Form

  • Get - Get a form by ID
  • Get Many - Get all forms
  • Submit - Submit a form programmatically

Form Submission

  • Get - Get a form submission by ID
  • Get Many - Get all form submissions

Blog Post

  • Get - Get a blog post by ID
  • Get Many - Get all blog posts

Landing Page

  • Get - Get a landing page by ID
  • Get Many - Get all landing pages

Payout

  • Get - Get a payout by ID
  • Get Many - Get all payouts

Contact Tag

  • Get Many - Get all contact tags

Contact Note

  • Get Many - Get all contact notes

User

  • Get Current - Get the current authenticated user

Kajabi Trigger Node

The trigger node listens for webhooks from Kajabi:

  • Form Submission - Triggered when a Kajabi form is submitted
  • Any Webhook - Receives any webhook payload from Kajabi

Credentials

OAuth2 (Recommended)

  1. Go to your Kajabi Dashboard
  2. Navigate to Settings > Integrations > Public API
  3. Create a new API application
  4. Copy the Client ID and Client Secret
  5. In n8n, create new Kajabi OAuth2 credentials
  6. Enter your Client ID and Client Secret
  7. Optionally enter your Site ID (required for multi-site accounts)

API Key

  1. Go to your Kajabi Dashboard
  2. Navigate to Settings > Integrations > Public API
  3. Create a new User API Key
  4. Copy the generated API key
  5. In n8n, create new Kajabi API credentials
  6. Enter your API key
  7. Optionally enter your Site ID (required for multi-site accounts)

Compatibility

  • Tested with n8n version 1.0.0 and later
  • Requires Kajabi API V1 access

Usage Notes

Multi-Site Accounts

If you have multiple sites in your Kajabi account, you must specify the Site ID in your credentials or use the filter[site_id] parameter in your queries.

Pagination

All "Get Many" operations support pagination:

  • Use "Return All" to fetch all results automatically
  • Use "Limit" to set the maximum number of results per page (1-100)

JSON:API Format

Kajabi API uses JSON:API format. The node automatically:

  • Extracts the data property from responses
  • Formats request bodies in JSON:API format for create/update operations

Rate Limits

If you receive 429 Too Many Requests errors:

  • Implement delays between requests
  • Use the built-in "Return All" with smaller page sizes
  • Cache frequently accessed data

Resources

License

MIT