Integrate real-time communication directly into your existing applications without building costly backend infrastructure.
Get StartedMake it easy for business to stay in touch with customers without having to worry about any connectivity hassle.
Multi-channel API platform built for sending time bound messages like OTPs, critical notifications.
Bulk SMS messaging portal offering two-way SMS communication services straight from your internet enabled computer.
Cloud Telephony with a top-end network connectivity to serve effectively through VOIP connection.
Digital Form Builder. Create forms, surveys, and quizzes that customer enjoy answering..
Email API & validation solution on a trusted platform—with technical and strategic support when you need it most.
Let your application emerge for sending SMS. Integrate developer friendly code into your application program code.
In-depth API knowledge integration documentation will assist you in Connecting code.
Send triggered communication and Build SMS workflows into your backend systems
Our developers are waiting for your impression
See Documentation Try for Free
$sender ='XXXX'; $mob ='XXXXX'; $auth='Your auth key'; $msg = urlencode("test"); $url = 'https://api.datagenit.com/sms?auth='.$auth.'&msisdn='.$mob. '&senderid='.$sender.'&message='.$msg.''; // API URL $result=SendSMS($url); function SendSMS($hostUrl){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $hostUrl); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_POST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); // change to 1 to verify cert curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY); $result = curl_exec($ch); return $result; }
$sender ='XXXX'; $mob ='XXXXX'; $auth='Your auth key'; $msg = urlencode("test"); $url = 'https://api.datagenit.com/sms?auth='.$auth.'&msisdn='.$mob. '&senderid='.$sender.'&message='.$msg.''; // API URL $result=SendSMS($url); function SendSMS($hostUrl){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $hostUrl); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_POST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); // change to 1 to verify cert curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY); $result = curl_exec($ch); return $result; }
$sender ='XXXX'; $mob ='XXXXX'; $auth='Your auth key'; $msg = urlencode("test"); $url = 'https://api.datagenit.com/sms?auth='.$auth.'&msisdn='.$mob. '&senderid='.$sender.'&message='.$msg.''; // API URL $result=SendSMS($url); function SendSMS($hostUrl){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $hostUrl); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_POST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); // change to 1 to verify cert curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY); $result = curl_exec($ch); return $result; }
using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.IO; using System.Net; public void SMSSend() { WebClient client = new WebClient(); string baseurl = "https://api.datagenit.com/sms? auth=xxxxx&senderid=xxxxx&msisdn=xxxxxx&message=Hello"; Stream data = client.OpenRead(baseurl); StreamReader reader = new StreamReader(data); string s = reader.ReadToEnd(); data.Close(); reader.Close(); }