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-inalambria-express

v0.1.0

Published

n8n community node for sending SMS via Inalambria Express API

Readme

n8n-nodes-inalambria-express

This is an n8n community node that allows you to send SMS messages using the Inalambria Express API.

n8n is a fair-code licensed workflow automation platform.

Availability

| Country | Status | |---------|--------| | Colombia | Available |

Note: Inalambria Express currently operates in Colombia.

Installation

Follow the installation guide in the n8n community nodes documentation.

npm

npm install n8n-nodes-inalambria-express

In n8n

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-inalambria-express and confirm

Credentials

To use this node, you need an API key from Inalambria Express:

  1. Log in to your Inalambria Express account
  2. Navigate to API settings to obtain your API key
  3. In n8n, create new credentials of type Inalambria Express API
  4. Paste your API key

Operations

Message

| Operation | Description | |-----------|-------------| | Send SMS | Send an SMS to one or multiple recipients | | Send Batch | Send different SMS messages to different groups of recipients | | Send Template | Send personalized SMS using templates with variables | | Get History | Retrieve message history with optional filters |

Account

| Operation | Description | |-----------|-------------| | Get Balance | Get current credit balance and usage statistics |

Job

| Operation | Description | |-----------|-------------| | Get Status | Get the status of an async job by ID | | Get Pending | List all pending async jobs |

Usage Examples

Send SMS

Send a simple SMS to multiple recipients:

  1. Add the Inalambria Express node
  2. Select Message resource and Send SMS operation
  3. Enter your sender ID (e.g., "MyCompany")
  4. Add recipient phone numbers (E.164 format: +573001234567)
  5. Enter your message content

Send Template SMS

Send personalized messages using variables:

  1. Select Send Template operation
  2. Set your template message: Hello {{name}}, your code is {{code}}
  3. Add recipients with their variables as JSON:
    {
      "+573001234567": {"name": "Juan", "code": "1234"},
      "+573009876543": {"name": "Maria", "code": "5678"}
    }

Async Operations

For large batches, enable async mode:

  1. Set Async to true in additional options
  2. The node returns a jobId
  3. Use Job > Get Status to check progress

Compatibility

  • n8n version: 0.200.0 or later
  • Node.js version: 18.x or later

Resources

License

MIT