Stripe Logo Get in Touch

TRUSTED BY COMPANIES WORLDWIDE

alternative
alternative
alternative
alternative
alternative

Connect with your customer on their loving channel

Make it easy for business to stay in touch with customers without having to worry about any connectivity hassle.

  • Bulk SMS
    Get enriched engagements through SMS marketing.
  • SMS API
    Allow your application automate sending and receiving messaging.
  • Two Factor Authentication
    Strengthen application access by adding security layer.
  • DLT Registration
    TRAI mandate the registration- For SMS messaging in India.
alternative
  • Bulk Voice Call
    Send one or million voice calls to your targeted audience.
  • Lead Generation
    Voice broadcast strategy with keypress responsive options.
  • Voice API
    Make, receive, and control calls through your application.
  • Text to Speech
    Transform text into natural-sounding speech. Multilingual support.
alternative
  • Missed Call Service
    An easy, fast and cost effective way to collect customer response.
  • Toll Free Number
    Make it easy for your customers to get the best service across channels.
  • Click to Call
    Add an extension allows you to connect VOIP calls with a single click.
  • Number Masking
    Anonymizing end to end calls & protecting your customers.
alternative

Platform Build By Datagen

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.

A few developer friendly lines to patch messaging

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();
}