The official PHP SDK for the Wawp WhatsApp Automation Platform. A PSR-4 compliant library designed for seamless integration with any PHP project.
- Comprehensive API Coverage: Support for all Wawp V2 endpoints.
- Multipart Media Support: Effortlessly send local images, videos, and documents.
- Webhook Security: Easily verify HMAC signatures for incoming events.
- Architectural Excellence: Resource-based structure for clean and maintainable code.
composer require wawp/sdk-phprequire 'vendor/autoload.php';
use Wawp\SDK\WawpClient;
$client = new WawpClient('INSTANCE_ID', 'ACCESS_TOKEN');
// Send a quick text
$client->messaging->sendText('201234567890@c.us', 'Hello from PHP!');
// Verify Webhook Signature
$isValid = $client->webhooks->verifySignature($payload, $signature, $secret);- NPM SDK & CLI: Native tools for the Node.js environment.
- Live Docs: Interactive documentation for testing.
- Laravel Wrapper: Specialized bridge for Laravel developers.
© 2026 Wawp API. All rights reserved.