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

v1.0.9

Published

n8n community nodes for Vapi voice AI platform

Readme

n8n-nodes-vapiai

An n8n community node package for the Vapi voice AI platform.

Features

This package provides two nodes:

  • Vapi — Main operation node to interact with the Vapi REST API
  • Vapi Trigger — Webhook trigger node that starts a workflow when Vapi sends an event

Supported Resources & Operations

Calls

| Operation | Description | |-----------|-------------| | Create | Start an outbound call | | Get | Retrieve a call by ID | | List | List all calls with filters | | End | End an active call |

Assistants

| Operation | Description | |-----------|-------------| | Create | Create a new assistant | | Get | Retrieve an assistant by ID | | List | List all assistants | | Update | Update an existing assistant | | Delete | Delete an assistant |

Phone Numbers

| Operation | Description | |-----------|-------------| | Buy | Provision a new phone number | | Get | Retrieve a phone number by ID | | List | List all phone numbers | | Delete | Release a phone number |

Squads

| Operation | Description | |-----------|-------------| | Create | Create a new squad | | Get | Retrieve a squad by ID | | List | List all squads | | Update | Update an existing squad | | Delete | Delete a squad |

Tools

| Operation | Description | |-----------|-------------| | Create | Create a new tool | | Get | Retrieve a tool by ID | | List | List all tools | | Update | Update an existing tool | | Delete | Delete a tool |


Installation

In n8n (recommended)

  1. Go to Settings → Community Nodes
  2. Click Install
  3. Enter n8n-nodes-vapiai
  4. Click Install

Via npm

npm install n8n-nodes-vapiai

Credentials

  1. Go to Credentials → New
  2. Search for Vapi API
  3. Enter your API Key from the Vapi Dashboard

Usage

Vapi Node

Select a Resource and Operation, then fill in the required fields.

All create/update operations include an optional Raw Body (JSON) field — useful for passing advanced Vapi parameters not exposed as dedicated fields.

Example — Create a Tool (function type):

{
  "type": "function",
  "function": {
    "name": "get_weather",
    "description": "Get current weather for a location",
    "parameters": {
      "type": "object",
      "properties": {
        "location": { "type": "string", "description": "City name" }
      },
      "required": ["location"]
    }
  },
  "server": {
    "url": "https://your-server.com/weather"
  }
}

Supported tool types: function, apiRequest, transferCall, endCall, dtmf, handoff


Example — Create a Call:

{
  "assistantId": "your-assistant-id",
  "phoneNumberId": "your-phone-number-id",
  "customer": {
    "number": "+11234567890"
  }
}

Vapi Trigger Node

  1. Add a Vapi Trigger node to your workflow
  2. Copy the generated Webhook URL
  3. Paste it as the Server URL in your Vapi Dashboard (account, assistant, or phone number level)
  4. Optionally enable Verify Secret Header to validate incoming requests

Supported event types:

  • conversation-update
  • end-of-call-report
  • function-call
  • tool-calls
  • status-update
  • speech-update
  • transfer-destination-request
  • handoff-destination-request
  • user-interrupted
  • assistant.started

Resources


License

MIT