Powerful WhatsApp Business
API Platform

Send messages, images, documents & more via WhatsApp. Multi-session support, Live Chat, Smart Bots, REST APIs, and bulk messaging — all in one dashboard.

No Monthly Fees on ISP Plans
Multi-Device Support
REST API Access
Bulk Messaging
Live Chat
Smart Bots
6+
ISP Integrations
5000+
Msgs/Day (Enterprise)
10
Sessions (Max)
24/7
Support

Everything Your Business Needs

Comprehensive messaging, chat & automation in one platform

Messaging

Single Text Messages

Send personalized text messages instantly to any WhatsApp number with delivery confirmation.

Bulk Text Messaging

Reach thousands of customers simultaneously with rate-limited bulk sending capabilities.

Image Sharing

Send images via URL or base64. Supports bulk image campaigns across multiple sessions.

PDF & Documents

Share PDFs, spreadsheets, and other documents directly through WhatsApp with bulk support.

GPS Location

Share real-time GPS coordinates with customers for deliveries, pickups, or meeting points.

Message History

Full log of all sent messages with timestamps, delivery status, and session details — searchable from the dashboard.

Communication & Automation

Live Chat New

Receive and reply to incoming WhatsApp messages in real time directly from the dashboard — no phone needed.

My Bots New

Build smart WhatsApp bots to handle FAQs, collect leads, and automate conversations 24/7 — no coding required.

Contact Lists

Organize your recipients into named contact lists for targeted bulk campaigns and easy reuse.

Activity Logs

Complete audit trail of all platform activity — API calls, bot events, session changes — for full visibility.

REST API Access

Full API support for PHP, C#, Python & JavaScript. Integrate with any system in minutes using simple HTTP calls.

API Key Management

Generate, revoke, and manage API keys per session straight from your dashboard for secure programmatic access.

Bot Builder

Build Your WhatsApp Bot
In Minutes — For Any Business

No coding needed. Set triggers, design menus, write greetings, and automate customer conversations 24/7 — for any industry.

Perfect for every type of business

ISP / Telecom

Support, billing & SVLAN menus

Bakery

Orders, menu & delivery

Pizza / Food

Order, track & upsell

Gaming

IDs, topups & support

Software House

Leads, demos & support

Website / Agency

Enquiries & quotes

What a bot looks like — live on WhatsApp

TS
Turbonet Support
online
hi

Welcome to Turbonet Support!

Please select the required service:

1️⃣ SVLAN Addition
2️⃣ Update Existing SVLAN
3️⃣ SVLAN Package Change
4️⃣ New Pool Addition
5️⃣ Reseller/Loop Account
1

Please provide your OLT, SLOT, PORT & VLAN details for SVLAN addition. Our team will process it shortly.

Live example — Turbonet Support bot running on WISS WAPI

The bot builder is this simple

Basic Info

My Pizza Bot
Select Session
hi, hello, menu, order
bye, close, stop, exit
*Welcome to {company_name}!* 🍕
How can we help you today?

Menu Builder

1. View Menu / Deals
2. Place an Order
3. Track My Order

API Integration (Optional)

https://crm.example.com/api
token...

🔔 Send greeting once every 24 hours

Auto-welcome returning customers after 24 hours of inactivity.

Keyword Triggers

Define comma-separated trigger words (hi, hello, menu, start) that activate the bot automatically.

Visual Menu Builder

Build numbered menus visually. Add, edit, or delete menu items. Customers reply with a number to navigate.

24h Auto-Greeting

Re-engage returning customers with an automatic greeting after 24 hours of inactivity — no manual effort.

CRM / API Hook

Optionally connect your CRM or backend via API Base URL & Bearer Token to fetch real-time data in bot responses.

Powerful ISP & Business Integrations

Available exclusively on 6-Month and 12-Month ISP plans

WARMUP Integration

Send automated WhatsApp notifications directly from WARMUP Technologies billing & support platform.

ZalPro Integration

Connect WISS WAPI to ZalPro for automated ISP billing alerts, invoice reminders, and customer notifications.

DMA Integration

Integrate with DMA systems for seamless ISP management alerts and automated WhatsApp messaging.

SAS RADIUS Integration

Link WISS WAPI with SAS RADIUS for automatic subscription renewal alerts and ISP customer notifications.

All integrations also support PHP, C#, Python & JavaScript API and Send Bulk Messages

How It Works

Get started in 3 simple steps

1

Register & Create Session

Sign up at wapi.wiss.pk and create your WhatsApp session from the Sessions tab.

2

Scan QR Code

Scan the displayed QR code with your WhatsApp mobile app to connect your number.

3

Start Sending

Send messages via the dashboard, use Live Chat, configure bots, or integrate via REST API.

Why Choose WISS WAPI?

Multi-Session

Connect multiple phones

Live Chat

Reply to customers in real time

Smart Bots

Automate conversations 24/7

ISP Integrations

WARMUP, ZalPro, DMA, SAS

API Integration

PHP, C#, Python, JavaScript

Contact Lists

Organised bulk campaigns

Activity Logs

Full audit trail

24/7 Support

Always here to help

Choose Your Plan

Flexible packages for every business size

Monthly Plans

Demo Account

2 Days trial

$0/mo

1 session · 25 msgs/day

  • 1 Session
  • 25 msgs/day
  • API Access
Try Free

Starter

Monthly billing

$3/mo

1 session · 500 msgs/day

  • 1 Session
  • 500 msgs/day
  • Bulk Send
Get Started
Popular

Professional

Monthly billing

$10/mo

2 sessions · 1000 msgs/day

  • 2 Sessions
  • 1000 msgs/day
  • Dedicated Support
Get Started

Enterprise

Monthly billing

$25/mo

10 sessions · 5000 msgs/day

  • 10 Sessions
  • 5000 msgs/day
  • 24/7 Support
  • Custom Integration
Contact Sales

ISP Long-Term Plans

Includes WARMUP · ZalPro · DMA · SAS RADIUS Integrations + Bulk Messaging + Full API

6 Months ISP

One-time · Nonrefundable

$45/6mo

3 sessions · 2000 msgs/day

  • 6 Months Activation
  • 3 Sessions (Numbers Connect)
  • 2000 Messages / Day
  • Only $45 (Nonrefundable)
  • WARMUP Integration
  • ZalPro Integration
  • DMA Integration
  • SAS RADIUS Integration
  • PHP, C#, Python & Javascript API
  • Send Bulk Messages
Subscribe Now
Best Value

12 Months ISP

One-time · Nonrefundable

$80/yr

5 sessions · 3000 msgs/day

  • 12 Months Activation
  • 5 Sessions (Numbers Connect)
  • 3000 Messages / Day
  • Only $80 (Nonrefundable)
  • WARMUP Integration
  • ZalPro Integration
  • DMA Integration
  • SAS RADIUS Integration
  • PHP, C#, Python & Javascript API
  • Send Bulk Messages
Subscribe Now

Developer-Friendly REST API

Integrate with your favourite programming language in minutes

PHP

C#

Python

JavaScript

Quick Start Example

// Send a WhatsApp message via WISS WAPI REST API (PHP)
$apikey  = 'your_api_key';
$session = 'YOUR_SESSION';
$to      = '923001234567';
$message = 'Hello from WISS WAPI!';

$url = "https://wapi.wiss.pk/api/v1/send?" .
       http_build_query([
           'apikey'  => $apikey,
           'session' => $session,
           'to'      => $to,
           'message' => $message
       ]);

$result = file_get_contents($url);
echo $result;

Ready to Get Started?

Join thousands of businesses using WISS WAPI to connect with their customers

Get In Touch

We're here to help you succeed

Phone

0333-5295854

Email

support@warmup.net.pk

sales@wiss.pk

inquiry@wiss.pk

Company

WARMUP Technologies
Private Limited