Speech API for PHP

Send automated voice calls with our API for PHP easily and securely. Try our API for PHP for free. Our team will help you integrate automated voice delivery into your app at PHP.

Auto call API functionality

Send voice text-to-speech with PHP

<?
	
$class="voice";
$method="sendvoice";
$user="user";
$password="password";
$to="34600000000";
$from="34900000000";
$message="voice+test";
$scheduledatetime="";
$language="en";
$voice="Joanna";
$output="";

$result = file_get_contents("https://www.afilnet.com/api/http/?class=".$class."&method=".$method."&user=".$user."&password=".$password."&to=".$to."&from=".$from."&message=".$message."&scheduledatetime=".$scheduledatetime."&language=".$language."&voice=".$voice."&output=".$output);
	
?>
<?

	$url = "https://www.afilnet.com/api/http/";
	$fields = array(
		"class" => urlencode("voice"),
		"method" => urlencode("sendvoice"),
		"user" => urlencode("user"),
		"password" => urlencode("password"),
		"to" => urlencode("34600000000"),
		"from" => urlencode("34900000000"),
		"message" => urlencode("voice+test"),
		"scheduledatetime" => urlencode(""),
		"language" => urlencode("en"),
		"voice" => urlencode("Joanna"),
		"output" => urlencode(""),
	);
	foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
	rtrim($fields_string, '&');
	
	$ch = curl_init();
	
	curl_setopt($ch,CURLOPT_URL, $url);
	curl_setopt($ch,CURLOPT_POST, count($fields));
	curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
	
	$result = curl_exec($ch);
	
	curl_close($ch);

		
?>
<?

	$url = "https://www.afilnet.com/api/basic/";
	$fields = array(
		"class" => urlencode("voice"),
		"method" => urlencode("sendvoice"),
		"to" => urlencode("34600000000"),
		"from" => urlencode("34900000000"),
		"message" => urlencode("voice+test"),
		"scheduledatetime" => urlencode(""),
		"language" => urlencode("en"),
		"voice" => urlencode("Joanna"),
		"output" => urlencode(""),
	);
	foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
	rtrim($fields_string, '&');
	
	$ch = curl_init();
	
	curl_setopt($ch,CURLOPT_URL, $url);
	curl_setopt($ch,CURLOPT_USERPWD, $user.":".$password);
	curl_setopt($ch,CURLOPT_POST, count($fields));
	curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
	curl_setopt($ch,CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
	curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
	
	$result = curl_exec($ch);
	$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
	
	curl_close($ch);
	
	if($httpcode == 401)
	{
		// LOGIN ERROR
	} else {
		// SUCCESS LOGIN
	}

		
?>
<?
	
	# This example requires nusoap
	require_once('nusoap.php');

	$class="voice";
	$method="sendvoice";
	$user="user";
	$password="password";
	$to="34600000000";
	$from="34900000000";
	$message="voice+test";
	$scheduledatetime="";
	$language="en";
	$voice="Joanna";
	$output="";

	# Create SOAP Client
	$soapclient = new soapclient('https://www.afilnet.com/api/soap/index.php?wsdl');

	# Call to method
	$result = $soapclient->call($user, $password, $class, $method, '{"to":"'.$to.'","from":"'.$from.'","message":"'.$message.'","scheduledatetime":"'.$scheduledatetime.'","language":"'.$language.'","voice":"'.$voice.'","output":"'.$output.'"}');
		
?>
Parameter Description Compulsory / Optional
class=voice Class requested: Class to which the request is made Compulsory
method=sendvoice Class method requested: Method of the class to which the request is made Compulsory
user User and e-mail of your Afilnet account Compulsory
password Password of your Afilnet account Compulsory
to Mobile or landline number where the voice call will be sent Compulsory
from Sender of the voice call, it must be a phone number, if an unaccepted sender is included, the voice call will be sent with an unknown sender Compulsory
message Message to be played by voice in voice call Compulsory
scheduledatetime Date and time of shipment in yyyy-mm-dd hh:mm:ss format Optional
language Language in which the voice call will be played, check attached table to see available values Optional
voice Voice with which the voice call will be played, check attached table to see available values Optional
output Output format of the result Optional
Answer:
  • status
  • result (if status=success), here you will receive the following values:
    • messageid
    • credits
  • error (if status=error), here you will receive the error code

Error codes:
Code Description
MISSING_USER User or email not included
MISSING_PASSWORD Password not included
MISSING_CLASS Class not included
MISSING_METHOD Method not included
MISSING_COMPULSORY_PARAM Compulsory parameter not included
INCORRECT_USER_PASSWORD Incorrect user or password
INCORRECT_CLASS Incorrect class
INCORRECT_METHOD Incorrect method
NO_ROUTE_AVAILABLE There are no available paths for the indicated destination
NO_CREDITS Your balance is insufficient

Send voice from template with PHP

<?
	
	# This example requires nusoap
	require_once('nusoap.php');

	$class="voice";
	$method="sendvoice";
	$user="user";
	$password="password";
	$to="34600000000";
	$from="34900000000";
	$message="voice+test";
	$scheduledatetime="";
	$language="en";
	$voice="Joanna";
	$output="";

	# Create SOAP Client
	$soapclient = new soapclient('https://www.afilnet.com/api/soap/index.php?wsdl');

	# Call to method
	$result = $soapclient->call($user, $password, $class, $method, '{"to":"'.$to.'","from":"'.$from.'","message":"'.$message.'","scheduledatetime":"'.$scheduledatetime.'","language":"'.$language.'","voice":"'.$voice.'","output":"'.$output.'"}');
		
?><?
	
$class="voice";
$method="sendvoicefromtemplate";
$user="user";
$password="password";
$to="34600000000";
$idtemplate=1000;
$params="mobile:123456789,name:test+name";
$scheduledatetime="";
$language="en";
$voice="Joanna";
$output="";

$result = file_get_contents("https://www.afilnet.com/api/http/?class=".$class."&method=".$method."&user=".$user."&password=".$password."&to=".$to."&idtemplate=".$idtemplate."¶ms=".$params."&scheduledatetime=".$scheduledatetime."&language=".$language."&voice=".$voice."&output=".$output);
	
?>
<?

	$url = "https://www.afilnet.com/api/http/";
	$fields = array(
		"class" => urlencode("voice"),
		"method" => urlencode("sendvoicefromtemplate"),
		"user" => urlencode("user"),
		"password" => urlencode("password"),
		"to" => urlencode("34600000000"),
		"idtemplate" => urlencode(1000),
		"params" => urlencode("mobile:123456789,name:test+name"),
		"scheduledatetime" => urlencode(""),
		"language" => urlencode("en"),
		"voice" => urlencode("Joanna"),
		"output" => urlencode(""),
	);
	foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
	rtrim($fields_string, '&');
	
	$ch = curl_init();
	
	curl_setopt($ch,CURLOPT_URL, $url);
	curl_setopt($ch,CURLOPT_POST, count($fields));
	curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
	
	$result = curl_exec($ch);
	
	curl_close($ch);

		
?>
<?

	$url = "https://www.afilnet.com/api/basic/";
	$fields = array(
		"class" => urlencode("voice"),
		"method" => urlencode("sendvoicefromtemplate"),
		"to" => urlencode("34600000000"),
		"idtemplate" => urlencode(1000),
		"params" => urlencode("mobile:123456789,name:test+name"),
		"scheduledatetime" => urlencode(""),
		"language" => urlencode("en"),
		"voice" => urlencode("Joanna"),
		"output" => urlencode(""),
	);
	foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
	rtrim($fields_string, '&');
	
	$ch = curl_init();
	
	curl_setopt($ch,CURLOPT_URL, $url);
	curl_setopt($ch,CURLOPT_USERPWD, $user.":".$password);
	curl_setopt($ch,CURLOPT_POST, count($fields));
	curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
	curl_setopt($ch,CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
	curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
	
	$result = curl_exec($ch);
	$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
	
	curl_close($ch);
	
	if($httpcode == 401)
	{
		// LOGIN ERROR
	} else {
		// SUCCESS LOGIN
	}

		
?>
<?
	
	# This example requires nusoap
	require_once('nusoap.php');

	$class="voice";
	$method="sendvoicefromtemplate";
	$user="user";
	$password="password";
	$to="34600000000";
	$idtemplate=1000;
	$params="mobile:123456789,name:test+name";
	$scheduledatetime="";
	$language="en";
	$voice="Joanna";
	$output="";

	# Create SOAP Client
	$soapclient = new soapclient('https://www.afilnet.com/api/soap/index.php?wsdl');

	# Call to method
	$result = $soapclient->call($user, $password, $class, $method, '{"to":"'.$to.'","idtemplate":"'.$idtemplate.'","params":"'.$params.'","scheduledatetime":"'.$scheduledatetime.'","language":"'.$language.'","voice":"'.$voice.'","output":"'.$output.'"}');
		
?>
Parameter Description Compulsory / Optional
class=voice Class requested: Class to which the request is made Compulsory
method=sendvoicefromtemplate Class method requested: Method of the class to which the request is made Compulsory
user User and e-mail of your Afilnet account Compulsory
password Password of your Afilnet account Compulsory
to Mobile or landline number where the voice call will be sent Compulsory
idtemplate Identifier of the template that contains the message that the voice call will play Compulsory
params Parameters to be substituted in the template for voice call customization, each {{parameter}} will be replaced by the assigned value Optional
scheduledatetime Date and time of shipment in yyyy-mm-dd hh:mm:ss format Optional
language Language in which the voice call will be played, check attached table to see available values Optional
voice Voice with which the voice call will be played, check attached table to see available values Optional
output Output format of the result Optional
Answer:
  • status
  • result (if status=success), here you will receive the following values:
    • messageid
    • credits
  • error (if status=error), here you will receive the error code

Error codes:
Code Description
MISSING_USER User or email not included
MISSING_PASSWORD Password not included
MISSING_CLASS Class not included
MISSING_METHOD Method not included
MISSING_COMPULSORY_PARAM Compulsory parameter not included
INCORRECT_USER_PASSWORD Incorrect user or password
INCORRECT_CLASS Incorrect class
INCORRECT_METHOD Incorrect method
NO_ROUTE_AVAILABLE There are no available paths for the indicated destination
NO_CREDITS Your balance is insufficient
NOT_ACCESS_TO_TEMPLATE You haven't access to the selected template

Send bulk voice with PHP

<?
	
	# This example requires nusoap
	require_once('nusoap.php');

	$class="voice";
	$method="sendvoicefromtemplate";
	$user="user";
	$password="password";
	$to="34600000000";
	$idtemplate=1000;
	$params="mobile:123456789,name:test+name";
	$scheduledatetime="";
	$language="en";
	$voice="Joanna";
	$output="";

	# Create SOAP Client
	$soapclient = new soapclient('https://www.afilnet.com/api/soap/index.php?wsdl');

	# Call to method
	$result = $soapclient->call($user, $password, $class, $method, '{"to":"'.$to.'","idtemplate":"'.$idtemplate.'","params":"'.$params.'","scheduledatetime":"'.$scheduledatetime.'","language":"'.$language.'","voice":"'.$voice.'","output":"'.$output.'"}');
		
?><?
	
$class="voice";
$method="sendvoicetogroup";
$user="user";
$password="password";
$from="34900000000";
$countrycode=34;
$idgroup=1;
$message="sms+test";
$language="en";
$voice="Joanna";
$scheduledatetime="";
$output="";

$result = file_get_contents("https://www.afilnet.com/api/http/?class=".$class."&method=".$method."&user=".$user."&password=".$password."&from=".$from."&countrycode=".$countrycode."&idgroup=".$idgroup."&message=".$message."&language=".$language."&voice=".$voice."&scheduledatetime=".$scheduledatetime."&output=".$output);
	
?>
<?

	$url = "https://www.afilnet.com/api/http/";
	$fields = array(
		"class" => urlencode("voice"),
		"method" => urlencode("sendvoicetogroup"),
		"user" => urlencode("user"),
		"password" => urlencode("password"),
		"from" => urlencode("34900000000"),
		"countrycode" => urlencode(34),
		"idgroup" => urlencode(1),
		"message" => urlencode("sms+test"),
		"language" => urlencode("en"),
		"voice" => urlencode("Joanna"),
		"scheduledatetime" => urlencode(""),
		"output" => urlencode(""),
	);
	foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
	rtrim($fields_string, '&');
	
	$ch = curl_init();
	
	curl_setopt($ch,CURLOPT_URL, $url);
	curl_setopt($ch,CURLOPT_POST, count($fields));
	curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
	
	$result = curl_exec($ch);
	
	curl_close($ch);

		
?>
<?

	$url = "https://www.afilnet.com/api/basic/";
	$fields = array(
		"class" => urlencode("voice"),
		"method" => urlencode("sendvoicetogroup"),
		"from" => urlencode("34900000000"),
		"countrycode" => urlencode(34),
		"idgroup" => urlencode(1),
		"message" => urlencode("sms+test"),
		"language" => urlencode("en"),
		"voice" => urlencode("Joanna"),
		"scheduledatetime" => urlencode(""),
		"output" => urlencode(""),
	);
	foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
	rtrim($fields_string, '&');
	
	$ch = curl_init();
	
	curl_setopt($ch,CURLOPT_URL, $url);
	curl_setopt($ch,CURLOPT_USERPWD, $user.":".$password);
	curl_setopt($ch,CURLOPT_POST, count($fields));
	curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
	curl_setopt($ch,CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
	curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
	
	$result = curl_exec($ch);
	$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
	
	curl_close($ch);
	
	if($httpcode == 401)
	{
		// LOGIN ERROR
	} else {
		// SUCCESS LOGIN
	}

		
?>
<?
	
	# This example requires nusoap
	require_once('nusoap.php');

	$class="voice";
	$method="sendvoicetogroup";
	$user="user";
	$password="password";
	$from="34900000000";
	$countrycode=34;
	$idgroup=1;
	$message="sms+test";
	$language="en";
	$voice="Joanna";
	$scheduledatetime="";
	$output="";

	# Create SOAP Client
	$soapclient = new soapclient('https://www.afilnet.com/api/soap/index.php?wsdl');

	# Call to method
	$result = $soapclient->call($user, $password, $class, $method, '{"from":"'.$from.'","countrycode":"'.$countrycode.'","idgroup":"'.$idgroup.'","message":"'.$message.'","language":"'.$language.'","voice":"'.$voice.'","scheduledatetime":"'.$scheduledatetime.'","output":"'.$output.'"}');
		
?>
Parameter Description Compulsory / Optional
class=voice Class requested: Class to which the request is made Compulsory
method=sendvoicetogroup Class method requested: Method of the class to which the request is made Compulsory
user User and e-mail of your Afilnet account Compulsory
password Password of your Afilnet account Compulsory
from Sender of the voice call, it must be a phone number, if an unaccepted sender is included, the voice call will be sent with an unknown sender Compulsory
countrycode Country prefix Compulsory
idgroup Group identifier containing the contacts to which the voice call will be sent Compulsory
message Message to be played by voice in voice call Compulsory
language Language in which the voice call will be played, check attached table to see available values Optional
voice Voice with which the voice call will be played, check attached table to see available values Optional
scheduledatetime Date and time of shipment in yyyy-mm-dd hh:mm:ss format Optional
output Output format of the result Optional
Answer:
  • status
  • result (if status=success), here you will receive the following values:
    • id
    • count
    • credits
    • destinations
      • messageid
      • destination
  • error (if status=error), here you will receive the error code

Error codes:
Code Description
MISSING_USER User or email not included
MISSING_PASSWORD Password not included
MISSING_CLASS Class not included
MISSING_METHOD Method not included
MISSING_COMPULSORY_PARAM Compulsory parameter not included
INCORRECT_USER_PASSWORD Incorrect user or password
INCORRECT_CLASS Incorrect class
INCORRECT_METHOD Incorrect method
NOT_ACCESS_TO_GROUP You are not allowed into the indicated group
NO_CREDITS Your balance is insufficient

Send bulk voice from template with PHP

<?
	
	# This example requires nusoap
	require_once('nusoap.php');

	$class="voice";
	$method="sendvoicetogroup";
	$user="user";
	$password="password";
	$from="34900000000";
	$countrycode=34;
	$idgroup=1;
	$message="sms+test";
	$language="en";
	$voice="Joanna";
	$scheduledatetime="";
	$output="";

	# Create SOAP Client
	$soapclient = new soapclient('https://www.afilnet.com/api/soap/index.php?wsdl');

	# Call to method
	$result = $soapclient->call($user, $password, $class, $method, '{"from":"'.$from.'","countrycode":"'.$countrycode.'","idgroup":"'.$idgroup.'","message":"'.$message.'","language":"'.$language.'","voice":"'.$voice.'","scheduledatetime":"'.$scheduledatetime.'","output":"'.$output.'"}');
		
?><?
	
$class="voice";
$method="sendvoicetogroupfromtemplate";
$user="user";
$password="password";
$countrycode=34;
$idgroup=1;
$idtemplate="1000";
$scheduledatetime="";
$language="en";
$voice="Joanna";
$output="";

$result = file_get_contents("https://www.afilnet.com/api/http/?class=".$class."&method=".$method."&user=".$user."&password=".$password."&countrycode=".$countrycode."&idgroup=".$idgroup."&idtemplate=".$idtemplate."&scheduledatetime=".$scheduledatetime."&language=".$language."&voice=".$voice."&output=".$output);
	
?>
<?

	$url = "https://www.afilnet.com/api/http/";
	$fields = array(
		"class" => urlencode("voice"),
		"method" => urlencode("sendvoicetogroupfromtemplate"),
		"user" => urlencode("user"),
		"password" => urlencode("password"),
		"countrycode" => urlencode(34),
		"idgroup" => urlencode(1),
		"idtemplate" => urlencode("1000"),
		"scheduledatetime" => urlencode(""),
		"language" => urlencode("en"),
		"voice" => urlencode("Joanna"),
		"output" => urlencode(""),
	);
	foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
	rtrim($fields_string, '&');
	
	$ch = curl_init();
	
	curl_setopt($ch,CURLOPT_URL, $url);
	curl_setopt($ch,CURLOPT_POST, count($fields));
	curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
	
	$result = curl_exec($ch);
	
	curl_close($ch);

		
?>
<?

	$url = "https://www.afilnet.com/api/basic/";
	$fields = array(
		"class" => urlencode("voice"),
		"method" => urlencode("sendvoicetogroupfromtemplate"),
		"countrycode" => urlencode(34),
		"idgroup" => urlencode(1),
		"idtemplate" => urlencode("1000"),
		"scheduledatetime" => urlencode(""),
		"language" => urlencode("en"),
		"voice" => urlencode("Joanna"),
		"output" => urlencode(""),
	);
	foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
	rtrim($fields_string, '&');
	
	$ch = curl_init();
	
	curl_setopt($ch,CURLOPT_URL, $url);
	curl_setopt($ch,CURLOPT_USERPWD, $user.":".$password);
	curl_setopt($ch,CURLOPT_POST, count($fields));
	curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
	curl_setopt($ch,CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
	curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
	
	$result = curl_exec($ch);
	$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
	
	curl_close($ch);
	
	if($httpcode == 401)
	{
		// LOGIN ERROR
	} else {
		// SUCCESS LOGIN
	}

		
?>
<?
	
	# This example requires nusoap
	require_once('nusoap.php');

	$class="voice";
	$method="sendvoicetogroupfromtemplate";
	$user="user";
	$password="password";
	$countrycode=34;
	$idgroup=1;
	$idtemplate="1000";
	$scheduledatetime="";
	$language="en";
	$voice="Joanna";
	$output="";

	# Create SOAP Client
	$soapclient = new soapclient('https://www.afilnet.com/api/soap/index.php?wsdl');

	# Call to method
	$result = $soapclient->call($user, $password, $class, $method, '{"countrycode":"'.$countrycode.'","idgroup":"'.$idgroup.'","idtemplate":"'.$idtemplate.'","scheduledatetime":"'.$scheduledatetime.'","language":"'.$language.'","voice":"'.$voice.'","output":"'.$output.'"}');
		
?>
Parameter Description Compulsory / Optional
class=voice Class requested: Class to which the request is made Compulsory
method=sendvoicetogroupfromtemplate Class method requested: Method of the class to which the request is made Compulsory
user User and e-mail of your Afilnet account Compulsory
password Password of your Afilnet account Compulsory
countrycode voice.sendvoicetogroupfromtemplate_countrycode Compulsory
idgroup Group identifier containing the contacts to which the voice call will be sent Compulsory
idtemplate Identifier of the template that contains the message that the voice call will play Compulsory
scheduledatetime Date and time of shipment in yyyy-mm-dd hh:mm:ss format Optional
language Language in which the voice call will be played, check attached table to see available values Optional
voice Voice with which the voice call will be played, check attached table to see available values Optional
output Output format of the result Optional
Answer:
  • status
  • result (if status=success), here you will receive the following values:
    • id
    • count
    • credits
    • destinations
      • messageid
      • destination
  • error (if status=error), here you will receive the error code

Error codes:
Code Description
MISSING_USER User or email not included
MISSING_PASSWORD Password not included
MISSING_CLASS Class not included
MISSING_METHOD Method not included
MISSING_COMPULSORY_PARAM Compulsory parameter not included
INCORRECT_USER_PASSWORD Incorrect user or password
INCORRECT_CLASS Incorrect class
INCORRECT_METHOD Incorrect method
NOT_ACCESS_TO_GROUP You are not allowed into the indicated group
NO_CREDITS Your balance is insufficient

Get voice message delivery status with PHP

<?
	
	# This example requires nusoap
	require_once('nusoap.php');

	$class="voice";
	$method="sendvoicetogroupfromtemplate";
	$user="user";
	$password="password";
	$countrycode=34;
	$idgroup=1;
	$idtemplate="1000";
	$scheduledatetime="";
	$language="en";
	$voice="Joanna";
	$output="";

	# Create SOAP Client
	$soapclient = new soapclient('https://www.afilnet.com/api/soap/index.php?wsdl');

	# Call to method
	$result = $soapclient->call($user, $password, $class, $method, '{"countrycode":"'.$countrycode.'","idgroup":"'.$idgroup.'","idtemplate":"'.$idtemplate.'","scheduledatetime":"'.$scheduledatetime.'","language":"'.$language.'","voice":"'.$voice.'","output":"'.$output.'"}');
		
?><?
	
$class="voice";
$method="getdeliverystatus";
$user="user";
$password="password";
$messages="123456,123457,123458";
$output="";

$result = file_get_contents("https://www.afilnet.com/api/http/?class=".$class."&method=".$method."&user=".$user."&password=".$password."&messages=".$messages."&output=".$output);
	
?>
<?

	$url = "https://www.afilnet.com/api/http/";
	$fields = array(
		"class" => urlencode("voice"),
		"method" => urlencode("getdeliverystatus"),
		"user" => urlencode("user"),
		"password" => urlencode("password"),
		"messages" => urlencode("123456,123457,123458"),
		"output" => urlencode(""),
	);
	foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
	rtrim($fields_string, '&');
	
	$ch = curl_init();
	
	curl_setopt($ch,CURLOPT_URL, $url);
	curl_setopt($ch,CURLOPT_POST, count($fields));
	curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
	
	$result = curl_exec($ch);
	
	curl_close($ch);

		
?>
<?

	$url = "https://www.afilnet.com/api/basic/";
	$fields = array(
		"class" => urlencode("voice"),
		"method" => urlencode("getdeliverystatus"),
		"messages" => urlencode("123456,123457,123458"),
		"output" => urlencode(""),
	);
	foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
	rtrim($fields_string, '&');
	
	$ch = curl_init();
	
	curl_setopt($ch,CURLOPT_URL, $url);
	curl_setopt($ch,CURLOPT_USERPWD, $user.":".$password);
	curl_setopt($ch,CURLOPT_POST, count($fields));
	curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
	curl_setopt($ch,CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
	curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
	
	$result = curl_exec($ch);
	$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
	
	curl_close($ch);
	
	if($httpcode == 401)
	{
		// LOGIN ERROR
	} else {
		// SUCCESS LOGIN
	}

		
?>
<?
	
	# This example requires nusoap
	require_once('nusoap.php');

	$class="voice";
	$method="getdeliverystatus";
	$user="user";
	$password="password";
	$messages="123456,123457,123458";
	$output="";

	# Create SOAP Client
	$soapclient = new soapclient('https://www.afilnet.com/api/soap/index.php?wsdl');

	# Call to method
	$result = $soapclient->call($user, $password, $class, $method, '{"messages":"'.$messages.'","output":"'.$output.'"}');
		
?>
Parameter Description Compulsory / Optional
class=voice Class requested: Class to which the request is made Compulsory
method=getdeliverystatus Class method requested: Method of the class to which the request is made Compulsory
user User and e-mail of your Afilnet account Compulsory
password Password of your Afilnet account Compulsory
messages voice.getdeliverystatus_messages Compulsory
output Output format of the result Optional
Answer:
  • status
  • result (if status=success), here you will receive the following values:
    • messageid
    • sms
    • deliverydate
    • deliverystatus
  • error (if status=error), here you will receive the error code

Error codes:
Code Description
MISSING_USER User or email not included
MISSING_PASSWORD Password not included
MISSING_CLASS Class not included
MISSING_METHOD Method not included
MISSING_COMPULSORY_PARAM Compulsory parameter not included
INCORRECT_USER_PASSWORD Incorrect user or password
INCORRECT_CLASS Incorrect class
INCORRECT_METHOD Incorrect method

Get list of voices with PHP

<?
	
	# This example requires nusoap
	require_once('nusoap.php');

	$class="voice";
	$method="getdeliverystatus";
	$user="user";
	$password="password";
	$messages="123456,123457,123458";
	$output="";

	# Create SOAP Client
	$soapclient = new soapclient('https://www.afilnet.com/api/soap/index.php?wsdl');

	# Call to method
	$result = $soapclient->call($user, $password, $class, $method, '{"messages":"'.$messages.'","output":"'.$output.'"}');
		
?><?
	
$class="voice";
$method="getdeliverystatus";
$user="user";
$password="password";
$lang="en";

$result = file_get_contents("https://www.afilnet.com/api/http/?class=".$class."&method=".$method."&user=".$user."&password=".$password."&lang=".$lang);
	
?>
<?

	$url = "https://www.afilnet.com/api/http/";
	$fields = array(
		"class" => urlencode("voice"),
		"method" => urlencode("getdeliverystatus"),
		"user" => urlencode("user"),
		"password" => urlencode("password"),
		"lang" => urlencode("en"),
	);
	foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
	rtrim($fields_string, '&');
	
	$ch = curl_init();
	
	curl_setopt($ch,CURLOPT_URL, $url);
	curl_setopt($ch,CURLOPT_POST, count($fields));
	curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
	
	$result = curl_exec($ch);
	
	curl_close($ch);

		
?>
<?

	$url = "https://www.afilnet.com/api/basic/";
	$fields = array(
		"class" => urlencode("voice"),
		"method" => urlencode("getdeliverystatus"),
		"lang" => urlencode("en"),
	);
	foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
	rtrim($fields_string, '&');
	
	$ch = curl_init();
	
	curl_setopt($ch,CURLOPT_URL, $url);
	curl_setopt($ch,CURLOPT_USERPWD, $user.":".$password);
	curl_setopt($ch,CURLOPT_POST, count($fields));
	curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
	curl_setopt($ch,CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
	curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
	
	$result = curl_exec($ch);
	$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
	
	curl_close($ch);
	
	if($httpcode == 401)
	{
		// LOGIN ERROR
	} else {
		// SUCCESS LOGIN
	}

		
?>
<?
	
	# This example requires nusoap
	require_once('nusoap.php');

	$class="voice";
	$method="getdeliverystatus";
	$user="user";
	$password="password";
	$lang="en";

	# Create SOAP Client
	$soapclient = new soapclient('https://www.afilnet.com/api/soap/index.php?wsdl');

	# Call to method
	$result = $soapclient->call($user, $password, $class, $method, '{"lang":"'.$lang.'"}');
		
?>
Parameter Description Compulsory / Optional
class=voice Class requested: Class to which the request is made Compulsory
method=getdeliverystatus Class method requested: Method of the class to which the request is made Compulsory
user User and e-mail of your Afilnet account Compulsory
password Password of your Afilnet account Compulsory
lang voice language Optional
Answer:
  • status
  • result (if status=success), here you will receive the following values:
    • lang
    • gender
    • name
    • default
  • error (if status=error), here you will receive the error code

Error codes:
Code Description
MISSING_USER User or email not included
MISSING_PASSWORD Password not included
MISSING_CLASS Class not included
MISSING_METHOD Method not included
MISSING_COMPULSORY_PARAM Compulsory parameter not included
INCORRECT_USER_PASSWORD Incorrect user or password
INCORRECT_CLASS Incorrect class
INCORRECT_METHOD Incorrect method

Returns the delivery status of certified SMS with PHP Returns the delivery status of certified SMS with Java Returns the delivery status of certified SMS with C Sharp Returns the delivery status of certified SMS with Unix Returns the delivery status of certified SMS with Ruby on rails Returns the delivery status of certified SMS with Python Returns the delivery status of certified SMS with Android Returns the delivery status of certified SMS with Objective C / iPhone Returns the delivery status of certified SMS with SQL Server Returns the delivery status of certified SMS with Oracle Returns the delivery status of certified SMS with Node JS Returns the delivery status of certified SMS with Go lang Returns the delivery status of certified SMS with Scala lang Returns the delivery status of certified SMS with Swift Returns the delivery status of certified SMS with Delphi

Afilnet offers you methods to improve security when using our API with PHP, thanks to the possibility of creating accesses and the possibility of activating filtering by IP.

Which API for PHP should I use?

Discover the advantages and disadvantages of each of our APIs. Find out which API is best for your Software in PHP.

This API allows you to connect to us from PHP to send requests via HTTP GET requests. This request sends the parameters in the same URL as the request.

  • HTTP GET is extremely simple to implement
  • Information is sent unencrypted (passwords could be extracted from logs or cache)
  • Maximum request of ~4000 characters

The POST request API allows you to connect to our API from PHP by sending request parameters via HTTP POST parameters. The information is sent independently of the URL.

  • HTTP POST is simple to implement
  • Information is sent encrypted
  • There is no limit on the size of the request
  • Medium security

The basic authentication API allows the use of GET and POST requests in PHP with an additional security layer, since in this case the username and password are sent in the header of the request.

  • Basic authentication is easy to implement
  • Access data is sent encrypted
  • The size limit depends on the use of GET or POST
  • Medium security

SOAP allows you to send requests in XML format with PHP, SOAP adds an extra layer of security to API requests.

  • SOAP integration is more complex
  • Information is sent encrypted
  • There is no limit on the size of the request
  • Medium / High security

Our JSON API allows you to send requests in JSON format with PHP, in addition this API adds the oAuth 2.0 protocol in the authentication that allows you to add an additional layer of security.

  • JSON oAuth 2.0 integration is more complex
  • Information is sent encrypted
  • There is no limit on the size of the request
  • High security

Connect PHP with our TEXT-TO-SPEECH API

01

Register as a client

In order to have access to the API you must be an Afilnet client. Registration will take a few minutes.

02

Request your free trial

Our company will offer you trial balance that will allow you to test with the API you need.

03

Integrate the API

Perform API integration using the programming language of your choice. If you have any questions or suggestions about the API, contact us

04

Welcome to Afilnet!

Everything ready!, has managed to improve its communications with Afilnet. We are here to support our API when you need it


Contact our team with any questions through the contact methods that we offer. Our team will try to offer you an immediate solution and will help you in the integration of our API in your Software.

Try Afilnet for free!

Sign up for free and try Afilnet! We offer you a free trial of our services. *



(*) Promotion only valid for companies that have never used the Afilnet service before. When requesting the free balance, Afilnet may request to verify your company information


Bulk SMS · Email Marketing · Social network · Instant messaging · Certification · and much more
Continue IMPORTANT INFORMATION ABOUT COOKIES: If you continue to use this web we will assume that you accept the terms of use. You will find more information in our Cookies Policy.
Payment methods
Wire transfer
Credit card
Paypal
Western Union
Skrill
Crypto
Afilnet in your language

Copyright © 2023 Afilnet · All rights reserved