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

v0.2.3

Published

n8n node to communicate with the AlfaConnect Plateform for workflow automation

Readme

n8n-nodes-alfaconnect

This is an n8n community node. It lets you use AlfaConnect in your n8n workflows.

AlfaConnect Workflow Example

AlfaConnect is a unified gateway that connects your applications to multiple service providers. Process payments, send emails, deliver SMS, and interact with AI models through a single powerful API available at https://alfaconnect.io.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Use Cases
Compatibility
Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

This node supports multiple resources and operations:

AlfaConnect Resource

  • Generic Get: Make custom GET requests to any AlfaConnect API endpoint
  • Generic Post: Make custom POST requests with JSON payload to any AlfaConnect API endpoint
  • Get Providers: Retrieve the list of available service providers

AlfaMail Resource

  • Send Mail: Send emails through AlfaConnect's email service providers

Djomy Resource

  • Get Payments: Retrieve the list of payments and their status

NimbaSMS Resource

  • Get Balance: Check SMS balance for NimbaSMS service
  • Send SMS: Send SMS messages through NimbaSMS provider

API Endpoints Reference for Generic Operations

When using Generic Get and Generic Post operations, you can access various AlfaConnect API endpoints. Rely on the provider documentation at https://alfaconnect.io/providers for detailed information on request parameters and response structures. Here are the available paths for each service:

🔗 Core AlfaConnect Endpoints

  • /v1/providers - Get list of all available service providers
  • /v1/providers/{provider_id} - Get details of a specific provider
  • /v1/services - Get list of all services
  • /v1/services/{service_id} - Get details of a specific service
  • /v1/status - Get overall platform status

📧 AlfaMail Endpoints

  • /v1/mail/providers - Get available email providers
  • /v1/mail/send - Send email (POST)
  • /v1/mail/templates - Get email templates
  • /v1/mail/history - Get email sending history
  • /v1/mail/status/{message_id} - Get email delivery status

📱 NimbaSMS Endpoints

  • /v1/sms/balance - Get SMS balance
  • /v1/sms/send - Send SMS message (POST)
  • /v1/sms/history - Get SMS sending history
  • /v1/sms/status/{message_id} - Get SMS delivery status
  • /v1/sms/pricing - Get SMS pricing information

💰 Djomy Payment Endpoints

  • /v1/payments - Get list of payments
  • /v1/payments/{payment_id} - Get specific payment details
  • /v1/payments/create - Create new payment (POST)
  • /v1/payments/status/{payment_id} - Get payment status
  • /v1/payments/refund - Process refund (POST)

💬 Messaging Endpoints

  • /v1/messages/telegram/get - Retrieve Telegram messages
  • /v1/messages/telegram/send - Send Telegram message (POST)
  • /v1/messages/whatsapp/get - Retrieve WhatsApp messages
  • /v1/messages/whatsapp/send - Send WhatsApp message (POST)
  • /v1/messages/slack/send - Send Slack message (POST)

🤖 AI & ML Endpoints

  • /v1/ai/models - Get available AI models
  • /v1/ai/chat - Chat with AI models (POST)
  • /v1/ai/image/generate - Generate images (POST)
  • /v1/ai/text/analyze - Analyze text (POST)

📊 Analytics Endpoints

  • /v1/analytics/usage - Get usage statistics
  • /v1/analytics/costs - Get cost breakdown
  • /v1/analytics/reports - Get detailed reports
  • /v1/analytics/metrics - Get performance metrics

🔐 Authentication & Account Endpoints

  • /v1/account/profile - Get account profile
  • /v1/account/usage - Get account usage
  • /v1/account/billing - Get billing information
  • /v1/auth/tokens - Manage API tokens

Usage Examples:

Generic Get: /v1/messages/telegram/get
Generic Post: /v1/mail/send (with email payload)
Generic Get: /v1/sms/balance
Generic Post: /v1/payments/create (with payment data)

Credentials

To use this node, you need to authenticate with the AlfaConnect API:

  1. Sign up for an AlfaConnect account at https://alfaconnect.io
  2. Get your API credentials from the AlfaConnect dashboard
  3. Configure the credentials in n8n:
    • Client ID: Your AlfaConnect client identifier (x-alfa-client-id)
    • Secret ID: Your AlfaConnect secret key (x-alfa-secret-id)

The node uses header-based authentication with your AlfaConnect API credentials.

Use Cases

Here are some practical examples of how you can use the AlfaConnect node in your n8n workflows:

🚀 E-commerce Order Processing

Create a complete order fulfillment workflow:

  1. Trigger: New order received (webhook/database)
  2. Payment: Use Djomy to process payment and verify status
  3. Notification: Send order confirmation email via AlfaMail
  4. SMS Alert: Notify customer via NimbaSMS when order ships
  5. Custom Integration: Use Generic Post to update inventory systems

📧 Customer Communication Hub

Automate multi-channel customer communications:

  1. Trigger: Customer support ticket created
  2. Email: Send acknowledgment email through AlfaMail
  3. SMS: Send urgent notifications via NimbaSMS
  4. Custom Data: Use Generic Get to fetch customer preferences
  5. Follow-up: Schedule automated follow-up communications

💰 Payment and Billing Automation

Streamline payment processing workflows:

  1. Trigger: Invoice due date approaching
  2. Payment Check: Use Djomy to check payment status
  3. Reminder: Send payment reminder via AlfaMail or NimbaSMS
  4. Custom Logic: Use Generic Post to update billing systems
  5. Reporting: Aggregate payment data for analytics

🔧 API Integration and Monitoring

Monitor and interact with AlfaConnect services:

  1. Scheduled Trigger: Run health checks every hour
  2. Service Check: Use Generic Get to check service status
  3. Provider Info: Get available providers and their status
  4. Alert System: Send SMS alerts for service issues via NimbaSMS
  5. Custom Reporting: Post metrics to external monitoring systems

📱 Marketing Campaign Automation

Create targeted marketing workflows:

  1. Trigger: Customer segment updated
  2. Email Campaign: Send personalized emails via AlfaMail
  3. SMS Blast: Follow up with SMS messages through NimbaSMS
  4. Payment Links: Generate payment links using Djomy
  5. Analytics: Track campaign performance with custom API calls

🛠 Developer and DevOps Workflows

Integrate AlfaConnect with development processes:

  1. Deployment Trigger: Code deployed to production
  2. Notification: Send deployment notifications via AlfaMail
  3. Status Check: Use Generic Get to verify service health
  4. Alert Team: Send critical alerts via NimbaSMS
  5. Custom Integration: Post deployment data to monitoring tools

Compatibility

  • Minimum n8n version: 1.0.0
  • Tested with n8n versions: 1.97.1
  • Node version: Requires Node.js 18 or higher

Resources