Skip to main content

API

📚 WhatsAble API Documentation (Version 2)

Welcome to the WhatsAble API Documentation! This guide provides comprehensive details on how to integrate and use the WhatsAble API to send WhatsApp messages programmatically. Whether you're a developer or a non-technical user, this documentation will walk you through the process step-by-step.


📌 Key Features of WhatsAble API

  • Send WhatsApp Messages: Automate WhatsApp messages with text, images, videos, and documents.
  • Template-Based Messaging: Use pre-defined templates for structured messages.
  • Attachment Support: Send files like PDFs, images, and videos.
  • Zapier & Make.com Integration: Easily integrate with no-code platforms like Zapier and Make.com.
  • Scalable: Send messages to multiple numbers with ease.

🚀 Getting Started

1. Prerequisites

  • A WhatsApp-enabled phone number (this will be used to send messages).
  • A WhatsAble account with an active subscription or free trial.
  • An API Key from your WhatsAble dashboard.

2. API Endpoint

  • Version 1: https://dashboard.whatsable.app/api/whatsapp/messages/send
  • Version 2: https://dashboard.whatsable.app/api/whatsapp/messages/v2.0.0/send

🔑 Authentication

To use the WhatsAble API, you need to authenticate your requests using your API Key. Include the API Key in the Authorization header of your HTTP request.

Authorization: YOUR_API_KEY

📤 Sending a WhatsApp Message

Request Structure

Send a POST request to the API endpoint with the following parameters:

Headers

  • Authorization: Your API Key.
  • Content-Type: application/json.

Body Parameters

ParameterTypeDescription
toStringThe recipient's phone number in E.164 format (e.g., +1234567890).
textStringThe message content you want to send.
attachmentString(Optional) URL or base64-encoded file for attachments (images, videos, PDFs).
filenameString(Optional) Name of the file if sending a document.

Example Request (cURL)

curl -X POST https://dashboard.whatsable.app/api/whatsapp/messages/v2.0.0/send \
-H 'Authorization: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"to": "+1234567890",
"text": "Hello, this is a test message from WhatsAble!",
"attachment": "https://example.com/image.jpg",
"filename": "image.jpg"
}'

📥 Response Structure

Success Response

If the message is sent successfully, you will receive a 200 OK response with the following structure:

{
"success": true,
"message": "Message sent successfully to +1234567890",
"details": {
"messages": [
{
"id": "wamid.XXXXXX",
"message_status": "accepted"
}
]
}
}

Response Fields

FieldTypeDescription
successBooleanIndicates if the message was sent successfully (true or false).
messageStringA human-readable message describing the result.
detailsObjectContains details about the sent message, including the message_id.

Error Responses

If the request fails, you will receive an error response with the following structure:

400 Bad Request

{
"success": false,
"message": "Invalid phone number format",
"details": "Phone number must be in E.164 format."
}

401 Unauthorized

{
"success": false,
"message": "API key is required"
}

403 Forbidden

{
"success": false,
"message": "Invalid API Key"
}

404 Not Found

{
"success": false,
"message": "The number +1234567890 is not registered."
}

🛠️ Code Examples

JavaScript (Fetch API)

var myHeaders = new Headers();
myHeaders.append("Authorization", "YOUR_API_KEY");
myHeaders.append("Content-Type", "application/json");

var raw = JSON.stringify({
to: "+1234567890",
text: "Hello, this is a test message from WhatsAble!",
});

var requestOptions = {
method: "POST",
headers: myHeaders,
body: raw,
redirect: "follow",
};

fetch(
"https://dashboard.whatsable.app/api/whatsapp/messages/v2.0.0/send",
requestOptions
)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.log("error", error));

Python (Requests Library)

import requests
import json

url = "https://dashboard.whatsable.app/api/whatsapp/messages/v2.0.0/send"

payload = json.dumps({
"to": "+1234567890",
"text": "Hello, this is a test message from WhatsAble!"
})

headers = {
'Authorization': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}

response = requests.post(url, headers=headers, data=payload)
print(response.text)

📂 Supported Media Types

WhatsAble API supports a wide range of media types for sending rich messages via WhatsApp. Below is a detailed breakdown of the supported file formats, extensions, MIME types, and maximum file sizes.

🎧 Audio

You can send audio files in various formats. The maximum file size for audio files is 16 MB.

Audio TypeExtensionMIME TypeMax Size
AAC.aacaudio/aac16 MB
AMR.amraudio/amr16 MB
MP3.mp3audio/mpeg16 MB
MP4 Audio.m4aaudio/mp416 MB
OGG Audio (OPUS only).oggaudio/ogg16 MB

📄 Documents

You can send documents in various formats, including text files, PDFs, and Microsoft Office files. The maximum file size for documents is 100 MB.

Document TypeExtensionMIME TypeMax Size
Text.txttext/plain100 MB
Microsoft Excel.xlsapplication/vnd.ms-excel100 MB
Microsoft Excel.xlsxapplication/vnd.openxmlformats-officedocument.spreadsheetml.sheet100 MB
Microsoft Word.docapplication/msword100 MB
Microsoft Word.docxapplication/vnd.openxmlformats-officedocument.wordprocessingml.document100 MB
Microsoft PowerPoint.pptapplication/vnd.ms-powerpoint100 MB
Microsoft PowerPoint.pptxapplication/vnd.openxmlformats-officedocument.presentationml.presentation100 MB
PDF.pdfapplication/pdf100 MB

🖼️ Images

You can send images in JPEG or PNG formats. Images must be 8-bit, RGB, or RGBA. The maximum file size for images is 5 MB.

Image TypeExtensionMIME TypeMax Size
JPEG.jpegimage/jpeg5 MB
PNG.pngimage/png5 MB

🎞️ Stickers

Stickers can be sent as WebP files. Animated stickers are also supported. The maximum file size for stickers is 500 KB for animated stickers and 100 KB for static stickers.

Sticker TypeExtensionMIME TypeMax Size
Animated Sticker.webpimage/webp500 KB
Static Sticker.webpimage/webp100 KB

🎥 Videos

You can send videos in 3GPP or MP4 formats. Only H.264 video codec and AAC audio codec are supported. The maximum file size for videos is 16 MB.

Video TypeExtensionMIME TypeMax Size
3GPP.3gpvideo/3gpp16 MB
MP4 Video.mp4video/mp416 MB

📜 Template-Based Messaging

WhatsAble supports template-based messaging for structured messages. The API automatically selects the appropriate template based on the message content and attachment type.

Template Selection Logic

  • Text-Only Messages: Templates like standard_1_line_textonly, standard_2_line2_textonly, etc.
  • Image Attachments: Templates like standard_image_notification_1_lines, standard_image_notification_2_lines, etc.
  • Video Attachments: Templates like standard_video_notification_1_lines, standard_video_notification_2_lines, etc.
  • Document Attachments: Templates like standard_doc_message_1_line, standard_doc_message_2_lines, etc.

❓ Need Help?

If you encounter any issues or need further assistance, feel free to reach out to our support team:

  • Chat Support: Click the green chat button in the bottom right corner of the WhatsAble dashboard.
  • Email Support: support@whatsable.app

🚀 Start Automating WhatsApp Messages Today!
👉 Visit WhatsAble's Website
👉 Try WhatsAble on Zapier


Disclaimer: This service is not affiliated with nor endorsed by WhatsApp Inc. The tool uses the WhatsApp API but is not affiliated with WhatsApp.