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

v0.2.1

Published

n8n community node for Meetbot booking API

Readme

n8n-nodes-meetbot

This is an n8n community node for the Meetbot scheduling API, allowing you to integrate meeting scheduling and booking capabilities into your n8n workflows.

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

Get Pages

Retrieve all scheduling pages for the authenticated user. This operation requires no parameters and returns a list of all available scheduling pages with their titles, durations, and URLs.

Get Page Info

Get detailed information about a specific scheduling page. Returns information such as title, duration, owner name, and maximum booking days into the future.

Required Parameters:

  • Page: The URL of the scheduling page (e.g., https://meet.bot/user/30min)

Get Slots

Retrieve available booking slots with optional filters. This operation allows you to get available time slots for a specific scheduling page with various filtering options.

Required Parameters:

  • Page: The scheduling page URL (e.g., https://meet.bot/user/30min)

Optional Parameters:

  • Count: Maximum number of results to return (default: 10)
  • Start Date: Start date boundary for the query (YYYY-MM-DD format)
  • End Date: End date boundary for the query (YYYY-MM-DD format)
  • Timezone: IANA timezone format (e.g., America/New_York)
  • Include Booking Link: If true, includes shareable links for each slot

Make Booking

Create a new meeting booking. This operation allows you to book a meeting slot with guest information and optional notes.

Required Parameters:

  • Page: The scheduling page URL (e.g., https://meet.bot/user/30min)
  • Start Time: Starting time of the meeting in ISO 8601 format
  • Guest Name: Name of the person making the booking
  • Guest Email: Email address of the person making the booking

Optional Parameters:

  • Notes: Any notes for the booking (will show in calendar invite)

Credentials

You need to configure your Meetbot API credentials:

  • API Token: Your Meetbot API token for authentication

Usage Examples

Basic Workflow: Get Available Slots and Book a Meeting

  1. Get Slots Node: Configure to retrieve available slots for your scheduling page
  2. Set Node: Process the slots data to select a preferred time
  3. Make Booking Node: Use the selected slot to create a booking

Advanced Workflow: Multi-Page Management

  1. Get Pages Node: Retrieve all your scheduling pages
  2. Split In Batches Node: Process each page individually
  3. Get Page Info Node: Get detailed information for each page
  4. Get Slots Node: Check availability across multiple pages
  5. Make Booking Node: Book meetings based on availability

API Endpoints

This node integrates with the following Meetbot API endpoints:

  • GET /v1/pages - List all scheduling pages
  • GET /v1/info - Get page information
  • GET /v1/slots - Get available slots
  • POST /v1/book - Create a booking

Response Formats

Get Pages Response

{
  "email": "[email protected]",
  "pages": [
    {
      "title": "30 Minute Meeting",
      "duration": 30,
      "url": "https://meet.bot/user/30min"
    }
  ]
}

Get Slots Response

{
  "count": 5,
  "duration": 30,
  "slots": [
    {
      "start": "2025-01-15T10:00:00Z",
      "url": "https://meet.bot/user/30min/2025-01-15T10:00:00Z"
    }
  ]
}

Make Booking Response

{
  "success": true,
  "ical_uid": "unique-booking-identifier"
}

Error Handling

The node includes comprehensive error handling for:

  • Invalid page URLs
  • Missing required parameters
  • API authentication errors
  • Validation errors from the Meetbot API

License

MIT