sapamatech / whatsapp
PHP Wrapper for Facebook WhatsApp Business API
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/sapamatech/whatsapp
Requires
- php: >=4.0.2
This package is auto-updated.
Last update: 2026-02-16 12:21:07 UTC
README
A lightweight PHP wrapper for the WhatsApp Cloud API by Sapamatech. Easily send text, media, templates, interactive buttons, and stickers via WhatsApp.
๐ ๏ธ Installation
Clone the repository:
git clone https://github.com/your-username/sapamatech-whatsapp-api.git
Include WhatsappApi.php in your PHP project, or set up autoloading via Composer (coming soon).
๐ Quick Start
require 'WhatsappApi.php';
use Sapamatech\Whatsapp\WhatsappApi;
$whatsapp = new WhatsappApi('YOUR_PHONE_NUMBER_ID', 'YOUR_ACCESS_TOKEN');
// Send a simple text message
$whatsapp->sendTextMessage('+1234567890', 'Hello from Sapamatech!');
โ Available Methods
๐ค Send Text Message
$whatsapp->sendTextMessage('+1234567890', 'Hello there!');
๐งพ Send Template Message
$whatsapp->sendTemplateMessage(
'+1234567890',
'hello_world',
'en_US',
[
[
'type' => 'body',
'parameters' => [
['type' => 'text', 'text' => 'John']
]
]
]
);
๐ผ Send Image
$whatsapp->sendImageMessage('+1234567890', 'https://example.com/image.jpg', 'Look at this image');
๐ Send Document
$whatsapp->sendDocumentMessage('+1234567890', 'https://example.com/doc.pdf', 'MyDoc.pdf', 'Document caption');
๐ Send Video
$whatsapp->sendVideoMessage('+1234567890', 'https://example.com/video.mp4', 'Cool video');
๐ Send Audio
$whatsapp->sendAudioMessage('+1234567890', 'https://example.com/audio.mp3');
๐งฉ Send Interactive Buttons
$buttons = [
['id' => 'btn_yes', 'title' => 'Yes'],
['id' => 'btn_no', 'title' => 'No']
];
$whatsapp->sendInteractiveButtons(
'+1234567890',
'Question',
'Do you agree?',
'Click one',
$buttons
);
๐ฌ Send Sticker
$whatsapp->sendStickerMessage('+1234567890', 'https://example.com/sticker.webp');
โน๏ธ Requirements
- PHP 4.4 or higher
- WhatsApp Cloud API access
- Verified Meta Business Account
- Publicly accessible media URLs
๐ License
MIT License
๐งโ๐ป Author
Sapamatech
๐ https://www.sapamatech.com
๐ง support@sapamatech.com
๐ง +254722906835