API PHP

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://www.waboxapp.com/api/send/chat");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "token=my-test-api-key&uid=12025550123&to=12025550193&custom_uid=msg-6147&text=Hello+world%21");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_MAXREDIRS, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 25);

$response = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close ($ch);


Get waboxapp API documentation for more detailed information

Try our IM API Sandbox

Are you ready to give it a try?

Our pricing is volume-based, so you can start testing now with no cost, of course! ;)

Sign Up Now