Skip to main content

Bulk verify WhatsApp numbers using Rapiwa API and Google Sheets

Workflow preview

Workflow preview
100%
Bulk verify WhatsApp numbers using Rapiwa API and Google Sheets preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

WhatsApp Bulk Number Verification in Google Sheets Using Unofficial Rapiwa API Who’s it for This workflow is for marketers, small business owners, freelancers, and support teams who want to automat...

Best for

  • Lead Nurturing automation workflows
  • Multimodal AI automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.splitinbatches, n8n-nodes-base.wait, n8n-nodes-base.limit, n8n-nodes-base.stickynote, n8n-nodes-base.if, n8n-nodes-base.googlesheets, n8n-nodes-base.code, n8n-nodes-base.httprequest

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by SpaGreen Creative.

Original n8n.io source

1.1 Workflow description

Title
Bulk verify WhatsApp numbers using Rapiwa API and Google Sheets
Workflow name
Bulk verify WhatsApp numbers using Rapiwa API and Google Sheets

WhatsApp Bulk Number Verification in Google Sheets Using Unofficial Rapiwa API

Who’s it for

This workflow is for marketers, small business owners, freelancers, and support teams who want to automate WhatsApp messaging using a Google Sheet without the official WhatsApp Business API. It’s suitable when you need a budget-friendly, easy-to-maintain solution that uses your personal or business WhatsApp number via an unofficial API service such as Rapiwa.

How it works / What it does

  • The workflow looks for rows in a Google Sheet where the Status column is pending.
  • It cleans each phone number (removes non-digits).
  • It verifies the number with the Rapiwa verify endpoint (/api/verify-whatsapp).
  • If the number is verified:
    • The workflow can send a message (optional).
    • It updates the sheet: Verification = verified, Status = sent (or leaves Status for the send node to update).
  • If the number is not verified:
    • It skips sending.
    • It updates the sheet: Verification = unverified, Status = not sent.
  • The workflow processes rows in batches and inserts short delays between items to avoid rate limits.
  • The whole process runs on a schedule (configurable).

Key features

  • Scheduled automatic checks (configurable interval; recommended 5–10 minutes).
  • Cleans phone numbers to a proper format before verification.
  • Verifies WhatsApp registration using Rapiwa.
  • Batch processing with limits to control workload (recommended max per run configurable).
  • Short delay between items to reduce throttling and temporary blocks.
  • Automatic sheet updates for auditability (verified/unverified, sent/not sent).

Defaults recommended in this workflow

  • Trigger interval: every 5–10 minutes (adjustable).
  • Max items per run: configurable (example: 200 max per cycle).
  • Delay between items: 2–5 seconds (example uses 3 seconds).

How to set up

  1. Duplicate the sample Google Sheet: ➤ Sample
  2. Fill contact rows and set Status = pending. Include columns like WhatsApp No, Name, Message, Verification, Status.
  3. In n8n, add and authenticate a Google Sheets node pointed to your sheet.
  4. Create an HTTP Bearer credential in n8n and paste your Rapiwa API key.
  5. Configure the workflow nodes (Trigger → Google Sheets → Limit/SplitInBatches → Code (clean) → HTTP Request (verify) → If → Update Sheet → Wait).
  6. Enable the workflow and monitor first runs with a small test batch.

Requirements

  • n8n instance with Google Sheets and HTTP Request nodes enabled.
  • Google Sheets OAuth2 credentials configured in n8n.
  • Rapiwa account and Bearer token (stored in n8n credentials).
  • Google Sheet formatted to match the workflow columns.

Why use Rapiwa

  • Cost-effective and developer-friendly REST API for WhatsApp verification and sending.
  • Simple integration via HTTP requests and n8n.
  • Useful when you prefer not to use the official WhatsApp Business API.
    Note: Rapiwa is an unofficial service — review its terms and risks before production use.

How to customize

  • Change schedule frequency in the Trigger node.
  • Adjust maxItems in Limit/SplitInBatches for throughput control.
  • Change the Wait node delay for safer sending.
  • Modify the HTTP Request body to support media or templates if the provider supports it.
  • Add logging or a separate audit sheet to record API responses and errors.

Best practices

  • Test with a small batch first.
  • Keep the sheet headers exact and consistent.
  • Store API keys in n8n credentials (do not hardcode).
  • Increase Wait time or reduce batch size if you see rate limits.
  • Keep a log sheet of verified/unverified rows for troubleshooting.

Example HTTP verify body (n8n HTTP Request node)

{
  "number": "{{ $json['WhatsApp No'] }}"
}

Notes and best practices

  • Test with a small batch before scaling.
  • Store the Rapiwa token in n8n credentials, not in node fields.
  • Increase Wait delay or reduce batch size if you see rate limits or temporary blocks.
  • Keep the sheet headers consistent; the workflow matches columns by name.
  • Log API responses or errors for troubleshooting.

Optional

  • Add a send-message HTTP Request node after verification to send messages.
  • Append successful and failed rows to separate sheets for easy review.

Support & Community

Need help setting up or customizing the workflow? Reach out here:

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Loop Over Items

Type / Role
n8n-nodes-base.splitInBatches - splitInBatches
Config choices
Version 3

Block 2 - Wait

Type / Role
n8n-nodes-base.wait - wait
Config choices
Version 1.1

Block 3 - Limit

Type / Role
n8n-nodes-base.limit - limit
Config choices
Version 1

Block 4 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 5 - If

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 6 - Fetch All Pending Contacts for Verifing

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.6

Block 7 - Change State of Rows in Checked

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.6

Block 8 - Set Status Verified

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 9 - Set Status Unverified

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 10 - Clean WhatsApp Number

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 11 - Verify WhatsApp Number Using Rapiwa

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 12 - Trigger Every 10 Minute

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.2

Block 13 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 14 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 15 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 16 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 17 - Sticky Note5

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 18 - Sticky Note6

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 19 - Sticky Note7

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Bulk verify WhatsApp numbers using Rapiwa API and Google Sheets
Complexity advanced
Nodes 19
Categories Lead Nurturing, Multimodal AI
Author SpaGreen Creative
Published 13 Sept 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/8555/8555.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Bulk verify WhatsApp numbers using Rapiwa API and Google Sheets do?

WhatsApp Bulk Number Verification in Google Sheets Using Unofficial Rapiwa API Who’s it for This workflow is for marketers, small business owners, freelancers, and support teams who want to automat...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Lead Nurturing, Multimodal AI use case.