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

v1.0.36

Published

Nimba SMS node for n8n - Send SMS, manage contacts, campaigns and more

Readme

n8n-nodes-nimbasms

npm version npm downloads License n8n Community Node

A comprehensive n8n community node that integrates with the Nimba SMS API, enabling you to send SMS messages, manage contacts, create campaigns, and handle billing operations directly from your n8n workflows.

🚀 Features

  • SMS Operations: Send individual SMS and retrieve message history
  • Contact Management: Create, update, delete, and organize contacts
  • Group Management: Organize contacts into groups for targeted campaigns
  • Account Operations: Check balance, view SMS packs, and monitor usage
  • Purchase Management: View purchase history and invoices
  • Sender Name Management: Manage custom sender names

📦 Installation

Option 1: Install via n8n Community Nodes (Recommended)

  1. Open your n8n instance
  2. Go to Settings > Community Nodes
  3. Click Install
  4. Enter n8n-nodes-nimbasms
  5. Click Install

Option 2: Manual Installation

# For self-hosted n8n instances
npm install n8n-nodes-nimbasms

# For global n8n installation
npm install -g n8n-nodes-nimbasms

Option 3: Docker Installation

Add to your n8n Docker configuration:

FROM n8nio/n8n:latest
USER root
RUN npm install -g n8n-nodes-nimbasms
USER node

🔑 Credentials Setup

Before using this node, configure your Nimba SMS API credentials:

  1. In n8n, go to Credentials and create Nimba SMS API credentials
  2. Fill in the required information:
    • Service ID (SID): Your Nimba SMS Service ID
    • Secret Token: Your Nimba SMS Secret Token
    • Base URL: Default is https://api.nimbasms.com

💡 Get your credentials from your Nimba SMS Dashboard

📱 Supported Operations

SMS Operations

  • Send: Send individual SMS messages
  • Get Many: Retrieve SMS history with filtering options
  • Get: Get details of a specific SMS message

Contact Operations

  • Create: Add new contacts with optional group assignment
  • Update: Modify contact information and group memberships

Group Operations

  • Get: Retrieve group details

Account Operations

  • Get Balance: Check your SMS credit balance

Purchase Operations

  • Get All: Retrieve purchase history with filtering options
  • Get: Get details of a specific purchase by UID

Sender Name Operations

  • Get: Check sender name status
  • Get Many: List all your sender names

🎯 Quick Start Examples

Send a Simple SMS

{
  "resource": "sms",
  "operation": "send",
  "senderName": "YourBrand",
  "contact": "+224123456789",
  "message": "Hello from n8n! Your order has been confirmed."
}

Get Purchase History

{
  "resource": "purchase",
  "operation": "getAll",
  "returnAll": false,
  "limit": 10,
  "additionalFields": {
    "payment_type": "Orange",
    "start_date": "2024-01-01T00:00:00Z",
    "end_date": "2024-12-31T23:59:59Z"
  }
}

Get Specific Purchase Details

{
  "resource": "purchase",
  "operation": "get",
  "purchaseUid": "07cc67f4-45d6-494b-adac-09b5cbc7e2b5"
}

Create a Contact with Group Assignment

{
  "resource": "contact",
  "operation": "create",
  "numero": "+224123456789",
  "additionalFields": {
    "name": "John Doe",
    "groupes_id": "1,2,3"
  }
}

Launch an SMS Campaign

{
  "resource": "campaign",
  "operation": "create",
  "name": "Welcome Campaign",
  "senderName": "YourBrand",
  "message": "Welcome to our service! Enjoy 20% off your first order.",
  "groupsIds": "1,2"
}

Check Account Balance

{
  "resource": "account",
  "operation": "getBalance"
}

🌍 Regional Support

Optimized for African markets with:

  • Guinea country code (+224) auto-formatting
  • Support for local phone number formats

🛠️ Compatibility

  • n8n Version: 0.190.0 or later
  • Node.js Version: 16.x or later
  • API Version: Nimba SMS API v1

📈 Use Cases

E-commerce

  • Order confirmations and shipping notifications
  • Abandoned cart recovery campaigns
  • Customer support and feedback collection

Marketing

  • Promotional campaigns and special offers
  • Event notifications and reminders
  • Customer segmentation and targeting

Business Operations

  • Employee notifications and alerts
  • Appointment reminders
  • System status updates and monitoring

Customer Service

  • Support ticket updates
  • Account verification codes
  • Service outage notifications

🤝 Support & Resources

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🔗 Links