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 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-wapisimo

v0.3.0

Published

n8n node for Wapisimo API

Downloads

12

Readme

Banner image

n8n-nodes-wapisimo

English | Español | Português

Español

Este nodo proporciona integración con la API de Wapisimo (https://api.wapisimo.dev/v1), permitiendo automatizar la comunicación vía WhatsApp Business API.

Funcionalidades

Nodo Regular (Wapisimo)

  • Enviar Mensaje

    POST /v1/{phone_or_group_id}/send
    {
      "to": "+1234567890",
      "message": "Hello from Wapisimo!"
    }

    Envía mensajes de WhatsApp usando ID de teléfono o grupo.

  • Verificar Número

    GET /v1/verify?phone=525585526853
      
    Respuesta:
    {
      "exists": true,
      "formatted_number": "+525585526853"
    }
  • Obtener Código QR

    GET /v1/{phone_id}/qr
      
    Respuesta:
    {
      "status": "disconnected",
      "qr_code": "base64_encoded_qr_image"
    }
  • Gestión de Webhooks

    # Listar webhooks
    GET /v1/{phone_id}/webhook
      
    # Añadir webhook
    POST /v1/{phone_id}/webhook
    {
      "url": "https://your-webhook.com"
    }
      
    # Eliminar webhook
    DELETE /v1/{phone_id}/webhook/{webhook_id}

Nodo Trigger (Wapisimo Trigger)

Recibe eventos de webhook con el siguiente formato:

{
  "from": "[email protected]",
  "message": "Hola",
  "timestamp": 1742968374,
  "fromMe": false
}

Límites de Uso

  • Envío de mensajes: 10 peticiones por minuto
  • Código QR: 1 petición por minuto
  • Webhooks: 60 peticiones por hora

Configuración

  1. Obtén tu API key en app.wapisimo.dev
  2. Configuración de autenticación:
    Authorization: Bearer your-api-key-here
    Base URL: https://api.wapisimo.dev/v1

Manejo de Errores

  • 200: Éxito
  • 400: Solicitud incorrecta
  • 401: No autorizado
  • 404: No encontrado
  • 429: Demasiadas peticiones
  • 500: Error interno del servidor

English

This node provides integration with Wapisimo API (https://api.wapisimo.dev/v1), enabling WhatsApp Business API communication automation.

Features

Regular Node (Wapisimo)

  • Send Message

    POST /v1/{phone_or_group_id}/send
    {
      "to": "+1234567890",
      "message": "Hello from Wapisimo!"
    }

    Send WhatsApp messages using phone or group ID.

  • Verify Number

    GET /v1/verify?phone=525585526853
      
    Response:
    {
      "exists": true,
      "formatted_number": "+525585526853"
    }
  • Get QR Code

    GET /v1/{phone_id}/qr
      
    Response:
    {
      "status": "disconnected",
      "qr_code": "base64_encoded_qr_image"
    }
  • Webhook Management

    # List webhooks
    GET /v1/{phone_id}/webhook
      
    # Add webhook
    POST /v1/{phone_id}/webhook
    {
      "url": "https://your-webhook.com"
    }
      
    # Delete webhook
    DELETE /v1/{phone_id}/webhook/{webhook_id}

Trigger Node (Wapisimo Trigger)

Receives webhook events in the following format:

{
  "from": "[email protected]",
  "message": "Hola",
  "timestamp": 1742968374,
  "fromMe": false
}

Rate Limits

  • Message sending: 10 requests per minute
  • QR code: 1 request per minute
  • Webhooks: 60 requests per hour

Configuration

  1. Get your API key at app.wapisimo.dev
  2. Authentication setup:
    Authorization: Bearer your-api-key-here
    Base URL: https://api.wapisimo.dev/v1

Error Handling

  • 200: Success
  • 400: Bad Request
  • 401: Unauthorized
  • 404: Not Found
  • 429: Too Many Requests
  • 500: Internal Server Error

Português

Este nó fornece integração com a API do Wapisimo (https://api.wapisimo.dev/v1), permitindo a automatização da comunicação via WhatsApp Business API.

Funcionalidades

Nó Regular (Wapisimo)

  • Enviar Mensagem

    POST /v1/{phone_or_group_id}/send
    {
      "to": "+1234567890",
      "message": "Hello from Wapisimo!"
    }

    Envie mensagens do WhatsApp usando ID do telefone ou grupo.

  • Verificar Número

    GET /v1/verify?phone=525585526853
      
    Resposta:
    {
      "exists": true,
      "formatted_number": "+525585526853"
    }
  • Obter Código QR

    GET /v1/{phone_id}/qr
      
    Resposta:
    {
      "status": "disconnected",
      "qr_code": "base64_encoded_qr_image"
    }
  • Gerenciamento de Webhooks

    # Listar webhooks
    GET /v1/{phone_id}/webhook
      
    # Adicionar webhook
    POST /v1/{phone_id}/webhook
    {
      "url": "https://your-webhook.com"
    }
      
    # Excluir webhook
    DELETE /v1/{phone_id}/webhook/{webhook_id}

Nó Trigger (Wapisimo Trigger)

Recebe eventos de webhook no seguinte formato:

{
  "from": "[email protected]",
  "message": "Hola",
  "timestamp": 1742968374,
  "fromMe": false
}

Limites de Uso

  • Envio de mensagens: 10 requisições por minuto
  • Código QR: 1 requisição por minuto
  • Webhooks: 60 requisições por hora

Configuração

  1. Obtenha sua API key em app.wapisimo.dev
  2. Configuração de autenticação:
    Authorization: Bearer your-api-key-here
    Base URL: https://api.wapisimo.dev/v1

Tratamento de Erros

  • 200: Sucesso
  • 400: Requisição inválida
  • 401: Não autorizado
  • 404: Não encontrado
  • 429: Muitas requisições
  • 500: Erro interno do servidor

License / Licencia / Licença

MIT