Skip to content

Introduction

Getting Started with Rapiwa – WhatsApp Messaging API

Learn how to quickly set up your Rapiwa account and start sending WhatsApp messages in minutes.
This guide covers account creation, token generation, sending your first message, and tracking delivery using our developer-friendly REST API.


Introduction

Welcome to Rapiwa – your reliable WhatsApp API platform.
This guide will walk you through the steps to set up and start sending messages using our powerful API.
It's quick, secure, and developer-friendly.


Step 1: Create an Account

  1. Go to the registration page.
  2. Fill in your details and verify your email address.
  3. Once verified, log in to access your dashboard.

Step 2: Create Your First WhatsApp Session

  1. Log In to Your Dashboard
    Access your account at app.rapiwa.com/client/dashboard.
  2. Navigate to the Sessions Section
    In the dashboard, go to the Sessions tab.
  3. Create a New Session
    Click Create New Session.
  4. Scan the QR Code
  5. Open WhatsApp on your phone.
  6. Go to Settings → Linked Devices.
  7. Scan the QR code to link your WhatsApp account.
  8. Session Activation
    Once scanned, your session will be connected, and you can copy your API key.

📘 Tip: For a more advanced walkthrough, check out the detailed guide here.


Step 3: Send Your First Message

API Endpoint:

POST https://app.rapiwa.com/api/send-message
Content-Type: application/json
Authorization: Bearer Your_API_Key

Body:

{
  "number": "88017XXXXXXXX",
  "message_type": "text",
  "message": "Hello from Postman!"
}

Response:

{
    "success": true,
    "message_type": "text",
    "message_id": "XXXXXXXXXXXXXXXX",
    "to": "88017XXXXXXXX"
}