Skip to main content
Built for PHP & Laravel Developers 🐘

Indonesian WhatsApp API for PHP & Laravel Framework

Integrate transaction notifications, OTPs, and billing reminders into your PHP/Laravel apps in just a few lines using Laravel Http Facade.

Quick Integration Example
// Contoh pengiriman pesan menggunakan Laravel Http Facade
use Illuminate\Support\Facades\Http;

$response = Http::withToken('YOUR_DEVICE_TOKEN')
    ->post('https://api.wagy.web.id/api/v1/send', [
        'to' => '628123456789',
        'message' => 'Halo! Pesanan #' . $order->id . ' telah berhasil dibayar.',
    ]);

if ($response->successful()) {
    $data = $response->json();
    // { "success": true, "queue_id": "q_981241" }
}

Advantages of Integrating Wagy in Laravel & PHP

Streamlining web developer workflows in Indonesia to connect information systems to WhatsApp.

Compatible with Laravel Http Facade & Guzzle

Use standard Laravel HTTP helpers without installing external dependencies that bloat vendor packages.

Perfect for Laravel Queue Jobs

Combine Wagy message dispatches with Laravel ShouldQueue feature for rapid, non-blocking browser response workflows.

Controller Webhook Signature Verification

Validate incoming webhook requests using Laravel middleware or controllers with hash_hmac('sha256', ...) function.

FAQ & General Questions

Still Have Questions?

Answers to the most frequently asked questions by business partners and developers.

Start Connecting Your Laravel App to Wagy

Get a free API Key and deploy WhatsApp notifications in your PHP/Laravel web applications.

Chat with Support