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

v0.1.8

Published

n8n community node for Relayion SMS Gateway

Readme

n8n-nodes-relayion

This is an n8n community node for Relayion, an SMS gateway that lets you send and receive SMS messages through a registered Android device.

Use this node to send SMS from any n8n workflow, query message history, browse conversations, and trigger workflows automatically when an SMS is received or a delivery status changes.

Installation Operations Credentials Trigger Node Setup Compatibility Resources


Installation

In your n8n instance, go to Settings > Community Nodes > Install and enter:

n8n-nodes-relayion

Restart n8n when prompted.


Operations

Relayion (regular node)

| Resource | Operation | Description | |---|---|---| | Outbound Message | Send SMS | Submit an outbound SMS to a recipient number | | Outbound Message | Get | Retrieve a sent message and its current delivery status | | Outbound Message | List | List sent messages with optional filters (status, recipient, date range) | | Inbound Message | Get | Retrieve a specific received message | | Inbound Message | List | List received messages with optional filters (sender, date range, SIM slot) | | Conversation | Get | Get a unified thread of all messages (sent and received) with a phone number | | Device | List | List devices registered to this API key's account, with SIM information |

Relayion Trigger

Starts a workflow automatically when Relayion fires a webhook event.

| Event | Description | |---|---| | inbound.received | An SMS was received on your device | | outbound.queued | An outbound SMS was accepted and queued | | outbound.dispatched | The send instruction was delivered to the device | | outbound.sent | The device confirmed the SMS was submitted to the carrier | | outbound.delivered | A delivery receipt was received from the carrier | | outbound.failed | The SMS failed to send |


Credentials

Create a Relayion API credential in n8n with the following fields:

| Field | Required | Description | |---|---|---| | API Key | Yes | Your API key from the Relayion console (rlyn_...). Found under API Keys. | | Base URL | Yes | Default is https://api.relayion.com. Change this only if you are self-hosting. | | Webhook Secret | No | Required only when using the Relayion Trigger node. See below. |

Each API key in Relayion has a default device and SIM. The node uses that default automatically. You can optionally override it per message using the Device ID and SIM Slot Index options on the Send SMS operation.


Trigger Node Setup

The Relayion Trigger does not auto-register webhooks. Setup is a one-time manual step:

  1. Add a Relayion Trigger node to your workflow and activate it. n8n will display a webhook URL.
  2. In the Relayion console, go to Webhooks > Create and paste that URL.
  3. Select the events you want to subscribe to and complete the form.
  4. Copy the secret shown after creation.
  5. Paste that secret into the Webhook Secret field of your Relayion API credential in n8n.

From that point, Relayion will call the webhook URL whenever a subscribed event occurs and n8n will start your workflow with the event payload.

Important Always set the Webhook Secret in production. Without it, the trigger accepts any incoming POST request without verifying its origin.


Compatibility

Tested against n8n version 1.0+.

Requires a Relayion account with at least one registered device and an active API key.


Resources