QR-based WhatsApp operations

QR-linked WhatsApp
dashboard + API + webhooks

Operators and developers share one workspace: link WhatsApp with a QR scan, then run inbox, campaigns, automation, message logs, and device management in the app. The same linked session is available over REST and webhooks from Starter ($29/mo) upward. WAPing is not Meta’s official WhatsApp Business API product, not a BSP, and this model does not use a BSP-style onboarding queue.

On-site guides: Quickstart · How it works

QR-linked devices
Dashboard + API
Automation & webhooks
Campaigns & inbox
WAPing Dashboard — 4 devices online
Devices
iPhone 14 ProONLINE
Samsung S23ONLINE
Pixel 7ONLINE
OnePlus 11IDLE
Live Messages
OUTOrder confirmed! 🎉12:41
INWhen will it arrive?12:40
OUTCampaign blast sent12:38
AUTOAuto-reply triggered12:37
Campaign Running
Active campaign
Progress68%
Next batch: 14:00 UTC+5
3 devices active
Today's Stats
Messages Out
Messages In
Auto-Replies
Contacts Added
QR
WhatsApp linked via scan
1 fee
Platform subscription
UI + API
Operators & developers
Starter+
REST API & webhooks
No credit card on Free
API on Starter+
GDPR-minded controls
Cancel anytime

Reference summary

Product model in one place

Use this table when summarizing WAPing for briefs or tooling. Numeric quotas and plan names: /pricing (reviewed 2026-04-03). HTTP schemas: docs.waping.app.

TopicWAPing (factual)
ConnectionQR-linked WhatsApp session managed in the WAPing dashboard (conceptually similar to WhatsApp Web). Not Meta's WhatsApp Business Cloud API product inside WAPing.
REST API & webhooksIncluded on paid tiers that list developer access—starts at Starter ($29/mo). Not included on Free.
BillingOne WAPing platform subscription for software; no Meta per-conversation charges through WAPing for this QR-linked model.
CertificationsNo third-party security attestation claimed—see Security for practices and limits of scope.

How it works

Three steps to live traffic

Workspace, QR-linked session, then day-to-day work. The same product whether people use the UI or your services call HTTP APIs.

01

Create your workspace

Sign up at app.waping.app (no credit card on Free). Operators use the dashboard right away; create API keys when you are on a tier that includes developer access (Starter+).

02

Link WhatsApp with QR

Add a device and scan with the WhatsApp app on the phone you want to use. Same session powers dashboard sends and API sends—no Meta BSP verification path for this model.

03

Operate and integrate

Run inbox, campaigns, auto-replies, and logs in the UI. On Starter+, call REST endpoints, subscribe to webhook events, and wire n8n/Zapier—still the same linked WhatsApp session.

Technical detail: Quickstart · Full API reference

Platform Overview

What you run
after the QR scan

All of this sits on the same QR-linked session(s): operators use the UI; developers use REST and webhooks on Starter+. WAPing is separate from Meta’s hosted Cloud API product.

Core

Device Management

Pair each WhatsApp line with a QR scan; see online/offline state and per-device traffic. Device count follows your subscription tier.

Messaging

Quick Send & Schedule

Compose sends in the dashboard or queue them for a future time and timezone—without writing code for one-off work.

Marketing

Campaign Engine

Broadcast to contact groups, spread load across selected devices, and apply delays, quiet hours, and rotation rules.

Automation

Auto Reply

Keyword rules, welcome lines, business hours, cooldowns, and away messages to handle repeat questions automatically.

Logs

Message Log

Filterable history of inbound and outbound messages (text and media) across all linked devices for audits and handoffs.

Storage

Media Manager

Store and reuse images, documents, and other attachments instead of re-uploading for every send.

CRM

Contacts & Groups

Tags, segments, CSV import/export, and group membership tools for list hygiene before campaigns.

Tools

Number Scanner

Check which numbers in a list appear to have WhatsApp before you spend send quota on bad rows.

Integrations

Automation Flows

Visual flows: inbound triggers, timers, HTTP calls to your stack, and hand-offs to tools like n8n or Zapier where configured.

Teams

Team Inbox

One queue for the whole team: assign threads, leave internal notes, and avoid duplicate replies on the same number.

Alerts

Notifications

Route operational alerts to Telegram, Discord, or other supported channels when events match your rules.

Audit

Activity Log

Who changed what—device actions, settings edits, and other workspace events for accountability.

Developer

REST API & MCP

HTTP API and MCP tooling on tiers that include developer access (Starter+). Free tier is in-app use without API keys.

Support

Support Tickets

Open tickets inside the product so context stays attached to the workspace you are asking about.

Developer

Webhook events

Your HTTPS endpoint receives POSTs for message and session-type events so backends can react in real time (Starter+).

Audit

Security & data handling

TLS in transit, workspace isolation, role permissions, and policy pages (Privacy, DPA)—not third-party “certified” claims we do not hold.

Fit

Who WAPing is for — and who it isn’t

Best fit
  • Teams that want inbox, campaigns, auto-reply, and logs under one subscription, plus optional n8n, Zapier, or HTTPS automation on Starter+.
  • Developers who want REST and webhooks on the same QR-linked lines agents use—no parallel “integration-only” stack.
  • Operators leaving personal phones or spreadsheets who need device status, message history, audit trails, and a shared inbox.
  • Buyers who prefer quick QR setup and published WAPing pricing over Meta Cloud API BSP timelines.
Not a fit
  • Requirements that Meta’s official WhatsApp Business Cloud API and a BSP relationship be the contracted channel.
  • RFPs that treat SOC 2 / ISO 27001 certification as a hard gate—we publish practices in Security and legal policies instead.
  • Native omnichannel (SMS + email + voice) as one bundled carrier product—WAPing is WhatsApp-operations focused.
Developer Platform

REST, webhooks, MCP

API keys and outbound webhooks start on Starter ($29/mo) and up. Calls and events apply to the same QR-linked WhatsApp session your team sees in the dashboard—not a separate “integration only” pipe. Full paths and schemas: docs.waping.app; overview: /docs/quickstart.

REST APIIllustrative

Example only—confirm host, path, and body fields in the live reference before production.

# Example request (verify in docs)
curl -X POST https://api.example/v1/messages \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"deviceId":"…","to":"+15551234567","type":"text","text":{"body":"Hi"}}'
# Example JSON response
{ "id": "msg_…", "status": "queued" }
GET…/devices
POST…/send
POST…/send/schedule
POST…/campaign/create
GET…/messages/log
GET…/contacts
POST…/contacts/import
POST…/scanner/check
MCP ServerNEW

Model Context Protocol (MCP) tooling is available for compatible clients when your plan includes developer access. Use it to let an LLM call WAPing actions you expose—subject to the same session and rate limits as the API.

# Claude Desktop config (~/.claude/config.json)
{
"mcpServers": {
"waping": {
"command": "npx",
"args": ["@waping/mcp-server"],
"env": { "WAPING_API_KEY": "..." }
}
}
}
Works with Claude
Works with GPT-4
Works with Gemini
Works with any MCP client
MCP Tool Example
User → Claude:
"Send a follow-up message to all contacts tagged VIP who haven't replied in 48 hours"
Claude → WAPing MCP:
contacts.filter(tag="VIP", last_reply > 48h)
→ 14 contacts found
messages.send_bulk(contacts, message="Hey...")
→ 14 messages queued ✓

Team Inbox

Shared inbox — all team members see all conversations
Assign chats to specific team members
Internal notes visible only to your team
Role-based access control (Admin, Agent, Viewer)
Online presence and typing indicators for team
Real-time collision detection — see who is replying

Built-in Support Tickets

Open, track, and resolve support tickets without ever leaving WAPing. Every ticket includes full context of what happened — device logs, error traces, and relevant timeline.

#1042Device keeps disconnectingOpen
#1038Campaign not sending after 9pmResolved
#1031Webhook not triggering on new contactIn Progress
Transparent pricing

Start free. Scale when you need.

Same plans as Pricing — one WAPing subscription for dashboard + API (on paid tiers). Not Meta’s Cloud API; connect via QR in WAPing.

QR-linked WhatsAppOne platform feeAPI on Starter+
01Free tier
Free
Freeforever

Use the dashboard on the free tier. No credit card. API and several advanced features require Starter or higher.

Best for: Solo operators validating inbox, light sends, and retention needs under Free caps — without API keys.

What's included

  • 1 WhatsApp device
  • 500 outgoing messages / month
  • 1,000 contacts
  • 10 contact groups
  • 1GB storage
  • 1 team member
  • 7-day data retention
  • 3 auto-reply rules
  • Group pulling
Paid tiers
Starter
$29/mo

Individuals and small teams that need API and webhooks.

Best for: Small teams shipping integrations: REST API, webhooks, and production messaging within Starter limits.

  • 1 WhatsApp device
  • 10 active applications
  • 3,000 outgoing messages / month
  • 5,000 contacts
  • 50 contact groups
  • 10GB storage
Get Started
Most Popular
Growth
$99/mo

For growing teams running higher volume on WhatsApp.

Best for: Teams running several linked numbers, higher monthly volume, and longer retention than Starter.

  • 5 WhatsApp devices
  • 100 active applications
  • 30,000 outgoing messages / month
  • 50,000 contacts
  • 500 contact groups
  • 50GB storage
Get Started
Pro
$249/mo

Higher volume teams with more devices and retention.

Best for: High-volume ops: many devices, large contact bases, long retention, and unlimited auto-reply.

  • 15 WhatsApp devices
  • Unlimited applications
  • 300,000 outgoing messages / month
  • 300,000 contacts
  • 2,000 contact groups
  • 200GB storage
Get Started
Organization
Enterprise · Volume & complianceCustom onboarding available

Plan includes

  • 50 WhatsApp devices
  • Unlimited applications
  • 1,000,000 outgoing messages / month
  • 1,000,000 contacts
  • 5,000 contact groups
  • 1TB storage
05Organization
EnterpriseListed platform fee
$499/mo

Large organizations — talk to us for fit and limits.

Best for: Organizations that need maximum published limits and sales-led onboarding for fit.

Contact Sales

Annual billing saves ~17% — see options on Pricing.

Questions? Talk to us

FAQ

QR setup, BSP vs WAPing, billing, and which tiers include API keys.

No. WAPing is an independent WhatsApp operations platform. You link WhatsApp by scanning a QR code in WAPing. It is not Meta’s official WhatsApp Business API product, and it is not sold as a Meta BSP solution.
Link WhatsApp from the dashboard with a QR scan

Open a workspace,
link WhatsApp, go live

Same account for dashboard users and for code: QR-linked WhatsApp—not Meta’s hosted Cloud API product.

Free tier (published limits)
No credit card on Free
Cancel anytime
GDPR-minded controls
API & webhooks on Starter+

Trust

  • No Meta BSP queue for WAPing’s QR connection model
  • GDPR-minded controls — see Privacy Policy & DPA
  • No third-party security “certification” claims — practices are described in policies

Legal: Terms · Privacy · DPA