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

v1.1.1

Published

n8n community node for the Fale Fácil Chat WhatsApp API — send messages, media, templates and receive webhooks via Bitrix24 integration.

Downloads

419

Readme

n8n-nodes-falefacilchat

Community node para n8n que integra a API da Fale Fácil Chat — conectando o WhatsApp Business ao seu workflow de automação.

Suporta conexões WAPI (WhatsApp Web) e Meta Cloud API (API oficial).


Instalação

Via n8n (recomendado)

  1. Abra o n8n
  2. Vá em Settings → Community Nodes
  3. Clique em Install a community node
  4. Digite: n8n-nodes-falefacilchat
  5. Clique em Install

Via npm (self-hosted)

cd ~/.n8n
npm install n8n-nodes-falefacilchat

Reinicie o n8n após a instalação.


Nodes disponíveis

Fale Fácil Chat (ações)

| Recurso | Operação | Descrição | |-----------|-------------------|----------------------------------------------| | Mensagem | Enviar Texto | Envia texto para um número WhatsApp | | Mídia | Enviar Mídia | Envia imagem, vídeo, áudio ou documento | | Template | Listar Templates | Lista templates aprovados (Meta) | | Template | Enviar Template | Envia template com variáveis e mídia (Meta) | | Conexão | Status | Verifica se o WhatsApp está conectado | | Conexão | Listar Conexões | Retorna todas as conexões do cliente |

Fale Fácil Chat Trigger (webhook)

Recebe mensagens e eventos do WhatsApp em tempo real.

Recursos:

  • Validação automática do token X-Webhook-Token
  • Filtro por provedor (WAPI, Meta, ou ambos)
  • Opção de ignorar mensagens próprias (evita loops)
  • Output normalizado com campos unificados entre WAPI e Meta

Configuração

1. Credenciais

Crie uma credencial do tipo Fale Fácil Chat API com a API Key da sua conexão (disponível no painel Fale Fácil Chat).

2. Webhook

Para receber mensagens, adicione o node Fale Fácil Chat Trigger ao workflow:

  1. Ative o workflow — o n8n gera uma URL de webhook
  2. Copie a URL e cole no campo Endpoint de webhook na aba Desenvolvedor da conexão no painel
  3. Opcionalmente, configure o Webhook Token no node para validar a origem das requisições

Output normalizado do Trigger

O node Trigger retorna um objeto padronizado independente do provedor:

{
  "provider": "wapi",
  "connection_id": 12,
  "from": "5511999990000",
  "fromName": "João Silva",
  "messageId": "3EB0A12345ABCDEF",
  "messageType": "text",
  "timestamp": "2026-04-16T14:30:00-03:00",
  "isGroup": false,
  "isFromMe": false,
  "text": "Olá! Gostaria de saber sobre os planos.",
  "raw": { ... }
}

O campo raw contém o payload completo original para casos que precisem de campos específicos do provedor.


Exemplos de uso

Resposta automática

[Fale Fácil Chat Trigger] → [IF: text contém "horário"] → [Fale Fácil Chat: Enviar Texto]

Envio de relatório em PDF

[Schedule] → [Gerar PDF] → [Fale Fácil Chat: Enviar Mídia (document)]

Disparos em massa via template

[Planilha de contatos] → [Loop] → [Fale Fácil Chat: Enviar Template]

Limites

  • Rate limit: 120 requisições/minuto por API Key
  • Mídia: máximo 20 MB por arquivo
  • Templates: exclusivos para conexões Meta Cloud API
  • sendtobitrix24: disponível apenas em WAPI (send_text e send_media)

Links


Licença

MIT