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-zadarma-app

v0.1.6

Published

This node allows you to connect n8n with Zadarma API

Readme

n8n-nodes-zadarma-app

n8n node for integrating Zadarma with n8n workflows.

This node allows you to connect n8n with Zadarma API to automate lead management, callbacks, and other CRM-related operations.

Features

  • Create and update entities in Teamsale CRM
  • Trigger workflows based on Zadarma events (callbacks, leads, etc.)
  • Supports error handling and continueOnFail

Installation

Community nodes (recommended)

In n8n:

  1. Go to Settings -> Community nodes -> Install.
  2. Find the app by npm Package Name "n8n-nodes-zadarma-app"

After install:

  1. Credentials → Create New → Zadarma
  2. Enter API Key + Secret from https://my.zadarma.com/marketplace/
  3. Add Zadarma node to workflow

Restart n8n if required.

Manual installation

npm install n8n-nodes-zadarma-app

Or for local development (restart n8n after setting the variable):

export N8N_CUSTOM_EXTENSIONS=/path/to/custom-nodes

Usage example

You can find more examples in our instruction page https://zadarma.com/en/support/instructions/n8n/

Sending SMS from n8n

Trigger - receiving a third-party Webhook, action - sending an SMS. In the Workflows section, click the Create workflow button then Add first step find and select the Webhook node.

Trigger - Webhook

Select the type of Webhook URL: Test URL or Production URL. In the HTTP Method field, choose the POST request type.

Webhook settings

Click Listen for event and copy the URL to which the Webhooks will be sent. After that, you need to receive a test Webhook so that the trigger can obtain a list of parameters for further use. For testing, we can send a POST request to our Webhook, for example using a bash script:

curl -X POST https://n8n.yourdomain.com/webhook-test/a5bbc64f-2714-446a-bfff-01b0fedbxab0 \
-H "Content-Type: application/json" \
-d '{"text": "Wake up, Neo...", "phone": "+44201234567"}'
  • https://n8n.yourdomain.com/webhook-test/a5bbc64f-2714-446a-bfff-01b0fedbxab0 - The URL of your webhook in n8n. Next, add a second step to your Workflow. In the search, find Zadarma and select the Create SMS action.

Zadarma Create SMS

On the left side of the window, the structure of the test Webhook notification received in the previous step will be displayed. Drag the required parameters into the corresponding fields for sending the SMS. In our example, two parameters were received, Text and Phone, which will be used as the SMS text and the recipient’s phone number respectively. You may have any other parameters.

SMS Parameters

Close the window. The setup is complete. Your Workflow is ready to run and publish. Now, when a Webhook is received at your URL, an SMS message will be sent.

Credentials

This node requires Zadarma API credentials.

Create new credentials in n8n:

  • API Token (required) from https://my.zadarma.com/marketplace/

The credentials are securely stored by n8n and used for all requests to the Zadarma API.

Supported Resources & Operations

| Resource | Operations | |----------|---------------------| | Lead | Get, Create, Update | | Callback | Create | | Customer | Get, Create, Update | | Event | Create, Update | | SMS | Create |

License

MIT

Changelog

See CHANGELOG.md for release history.