Log in to your Whatsiplus panel using this link to generate your API key

Whatsiplus API
HomeGeneralSettingWebhookPartner
Wordpress Plugin
  • WhatsApp Order Notification
  • WhatsApp Login
  • WhatsApp Scheduled Notification
WHMCS Module
  • WhatsApp Notification
  • WhatsApp Login
HomeGeneralSettingWebhookPartner
Wordpress Plugin
  • WhatsApp Order Notification
  • WhatsApp Login
  • WhatsApp Scheduled Notification
WHMCS Module
  • WhatsApp Notification
  • WhatsApp Login
WhatsApp
  1. General
  • sendMsg | Single
    POST
  • sendMsg | Single
    GET
  • sendMsg | Multiple phone numbers
    POST
  • sendMsg | Multiple phone numbers (Json)
    POST
  • sentMessages
    GET
  • receivedMessages
    GET
  • getStatus
    GET
  • pending
    GET
  • deletePending
    GET
  • getGroupList
    GET
  • sendGroup | Single
    POST
  • sendGroup | Single
    GET
  • sendGroup | Multiple groups
    POST
  • sendLocation
    GET
  • sendLocation
    POST
  • sendLocation (JSON)
    POST
  • isRegistered
    GET
  1. General

sendMsg | Single

POST
https://api.whatsiplus.com/sendMsg/APIKEY
Use this method to send messages to your users’ WhatsApp numbers through our API.
Message Size Limitation
When sending outbound messages via our API, please ensure that the total size of the content remains below the maximum limit allowed by the channel.
If a request includes media or multiple media files whose combined size exceeds the limit, the API will return an error.
For WhatsApp, the maximum supported size is 100MB.
New Media Upload Options
In addition to the existing URL-based media sending method, our API now supports two new direct upload parameters:
• file — Upload a media file directly to our server and have it delivered to the recipient through WhatsApp.
• base64_file — Send media as a raw Base64-encoded string without any MIME prefix.
These new parameters allow you to send files directly, without needing to provide a public URL.
To test all message-sending capabilities in real conditions, you can use the following page:
https://whatsiplus.com/send-whatsapp-message/

Request

Body Params multipart/form-data

Responses

🟢200sendMsg | Single
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.whatsiplus.com/sendMsg/APIKEY' \
--form 'phonenumber="447400733413"' \
--form 'message="This is a test message"' \
--form 'schedule="1724160037"' \
--form 'link="https://example.com/image.jpg"' \
--form 'file=@""' \
--form 'base64_file=""'
Response Response Example
{
    "success": "true",
    "message": "Added to the message queue",
    "messageId": 565
}
Modified at 2025-11-25 10:09:22
Next
sendMsg | Single
Built with