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

v1.2.8

Published

Integrate ClickSend with your tech stack using n8n. Configure multi-channel communications. Send SMS, MMS, Voice, Fax and Letters. You can connect ClickSend to any API, database, webhook, and more.

Readme

n8n-nodes-clicksendsms

An n8n community node that lets you use ClickSend inside your n8n workflows to send SMS, MMS, Fax, Voice messages, Letters, and Postcards — and to trigger workflows when an inbound SMS is received.


Table of Contents


Features

Action node:

  • Send SMS
  • Send SMS to a Contact List

Trigger node:

  • Receive inbound SMS via webhook

Requirements

  • An active ClickSend account
  • Your ClickSend username (the email you signed up with) and API key
  • n8n v0.200.0 or later

Installation

In n8n (recommended)

  1. Open n8n and go to Settings → Community Nodes
  2. Click Install
  3. Enter n8n-nodes-clicksendsms and click Install
  4. Restart n8n

Manual / self-hosted

npm install n8n-nodes-clicksendsms

Then restart n8n.


Getting ClickSend Credentials

You need two things from your ClickSend account: your username and your API key.

Step 1 — Log in to ClickSend

Go to https://dashboard.clicksend.com and log in.

Step 2 — Find your API key

  1. Click your name or avatar in the top-right corner
  2. Select Account → Subaccounts & API from the menu
    (Direct link: https://dashboard.clicksend.com/account/subaccounts)
  3. You will see your Username (your login email) and API Key listed on this page
  4. Copy both values

Tip: If you want a dedicated key, create a new subaccount on the same page and use that subaccount's username + API key instead.


Configuration in n8n

  1. In your n8n workflow, add a ClickSend node
  2. Click Create new credential (or select an existing one)
  3. In the credential form:
    • ClickSend Username — paste your ClickSend login email
    • ClickSend API Key — paste the API key from the dashboard
  4. Click Save
  5. n8n will test the credential automatically by calling GET /v3/account

Node Parameters

Send SMS

| Field | Required | Description | |---|---|---| | Sender / From | No | Select from your purchased dedicated numbers, own numbers, or alpha tags. Leave blank to use ClickSend's free shared numbers. | | Recipient / To | Yes | Recipient phone number in international format, e.g. +61411111111 | | Message Body | Yes | SMS text. Standard SMS is 160 characters. | | Schedule | No | Date/time to send the message. Leave blank to send immediately. | | Custom String | No | Your internal reference tag (max 50 chars), e.g. order_123 |

Send SMS to a Contact List

| Field | Required | Description | |---|---|---| | Sender / From | No | Same as above | | Contact List | Yes | Select a contact list from your ClickSend account | | Message Body | Yes | SMS text | | Schedule | No | Optional scheduled send time | | Custom String | No | Internal reference tag |

Usage Examples

Send an SMS

  1. Add a ClickSend node to your workflow
  2. Set ActionSend SMS
  3. Fill in To (e.g. +61411111111) and Message Body
  4. Leave From blank to use a shared sender, or select your dedicated number
  5. Execute the workflow

Trigger a workflow on inbound SMS

  1. Add a ClickSend Trigger node as the first node in your workflow
  2. Set a Rule Name
  3. Activate the workflow
  4. Send an SMS to your ClickSend inbound number — your workflow will fire with the message data

Error Handling

  • INVALID_RECIPIENT — The recipient number is invalid. Check the format (must be international, e.g. +61411111111).
  • INSUFFICIENT_CREDIT — Your ClickSend account is out of credit. Top up at https://dashboard.clicksend.com/topup.
  • 401 Unauthorized — Your credentials are wrong. Re-check your username and API key.
  • Credential test fails — Make sure you are using your login email as the username, not a display name.

Support