Skip to content
Home » SMS BulkSMS API

SMS BulkSMS API

Welcome to SMS BulkSMS API

Simple and powerful SMS & MMS API. Because we use a very simple API you can use any programming language that can make HTTP requests to communicate with our API. Sign up for free to get 10 trial messages. You can buy a plan or upgrade your account at any time. Contact us for more details.

Features:
  1. Simple interface
  2. Support long text SMS
  3. Support MMS (Audio, Video, Pictures, etc)
  4. Send SMS with a simple POST request to our API
  5. Send SMS directly from the website

How to use

It allows you to send messages through our high-throughput API gateway worldwide.

StringDescription
number the receiver’s phone number
message the body of the message
token your api authentication token
//get yours here
media (optional – For MMS Only)direct link (URL) for the MMS media file

Works on all platforms!

Example HTML Code

<html>
<head></head>
<body>
<h1>Send Simple SMS using SMS BulkSMS API</h1>
<form name="simpleSMS" action="https://revampsms.com/api/v1/index.php" method="post" enctype="multipart/form-data">
<input type="text" name="token" id="token" placeholder="API Token" required="required" /><br><br>
<input type="text" name="media" id="media" placeholder="optional link (URL) of the MMS file" /><br><br>
<textarea name="number" id="number" placeholder="country code and numbers, comma separated" required="required"></textarea><br><br>
<textarea name="message" id="message" placeholder="Your text message" required="required"></textarea><br><br><br>
<input value="Send Message" type="submit" /> 
</form>
</body>
</html>

Example PHP/HTTP Header

$url = "https://revampsms.com/api/v1/index.php?number=".$number."&message=".$message."&token=".$token;

//token not required for the free option

$c = curl_init();

curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($c, CURLOPT_URL, $url);

$curl_response = curl_exec($c);

curl_close($c);

$response = json_decode($curl_response);

Example PHP API

<?php
$url = "https://revampsms.com/api/v1/index.php";

				$postfields = array(
					'token' => "$token",
					'number' => "$to",
					'message' => "$text",
					'media' => "$media",
                                        
				);

				if (!$curld = curl_init()) {
					exit;
				}

				curl_setopt($curld, CURLOPT_POST, true);
				curl_setopt($curld, CURLOPT_POSTFIELDS, $postfields);
				curl_setopt($curld, CURLOPT_URL,$url);
				curl_setopt($curld, CURLOPT_RETURNTRANSFER, true);

				$curl_output = curl_exec($curld);
				
				$response = json_decode($curl_output);

				
				}
				
				
				if ($response->success == "true") { 
				
				//Do something when the response is successful
				
                                 } 
				else {
				//Do something when the response fails
				}

Example PHP and HTML Code CURL

<?php
/*
	Author: freebulksmsonline.com
	Save the file as index.php and enjoy
	Simple and easy for modification, PHP script for SMS sending through HTTP with delivery reports. 
	You just have to type your account information from www.freebulksmsonline.com and upload files on the server.

	https://www.facebook.com/smsbulksmsapi/

	Instruction:
	Find 1 parameter in my-account and type your account information on your my-account page freebulksmsonline.com/my-account
	
		1. $token = "***************"; // Change ********, and put your FREE SMS Bulk SMS  API authentication token
*/
?>

<html>
	<head>
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<meta name="description" content="PHP script for Bulk SMS sending. Send Bulk SMS with API connection.">
			<title>PHP Bulk SMS script</title>

			<style type="text/css">
				body{
					font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif; 
					font-size:12px;
				}
				p, h1, form, button{border:0; margin:0; padding:0;}
				.spacer{clear:both; height:1px;}
				/* ----------- My Form ----------- */
				.myform{
					margin:0 auto;
					width:400px;
					padding:14px;
				}
				/* ----------- stylized ----------- */
					#stylized{
						border:solid 2px #b7ddf2;
						background:#ebf4fb;
					}
					#stylized h1 {
						font-size:14px;
						font-weight:bold;
						margin-bottom:8px;
					}
					#stylized p{
						font-size:11px;
						color:#666666;
						margin-bottom:20px;
						border-bottom:solid 1px #b7ddf2;
						padding-bottom:10px;
					
				}
			</style> 
			<script type="text/javascript">
	
				//Edit the counter/limiter value as your wish
				var count = "160";   //Example: var count = "175";
				function limiter(){
				var tex = document.myform.text.value;
				var len = tex.length;
				if(len > count){
						tex = tex.substring(0,count);
						document.myform.text.value =tex;
						return false;
				}
				document.myform.limit.value = count-len;
				}


			</script> 

		</head>

		<body>
		<?php
		
		$token = "*************************************"; // Change ********, and put your FREE SMS Bulk SMS  API authentication token
		$text = $_REQUEST["text"];
		$to = $_REQUEST["to"];
		$media = $_REQUEST["media"];
		$option = $_REQUEST["option"];

			switch ($option) {

			case sendsms:
				
				if ($text == "") { echo "<center>Error!<br>Text not entered<br><a href=\"javascript:history.back(-1)\">Go Back</a></center>"; die; } else { }
				if ($to == "") { echo "<center>Error!<br>Number not entered<br><a href=\"javascript:history.back(-1)\">Go Back</a></center>"; die; } else { }

				
			// You can change explode to (, \n ; . -) or something else. 
			
				$to_arr = explode(",", $to);

				foreach ($to_arr as $to_x){	
				
				$url = "https://revampsms.com/api/v1/index.php";

				$postfields = array(
					'token' => "$token",
					'number' => "$to_x",
					'message' => "$text",
					'media' => "$media"

				);

				if (!$curld = curl_init()) {
					exit;
				}

				curl_setopt($curld, CURLOPT_POST, true);
				curl_setopt($curld, CURLOPT_POSTFIELDS, $postfields);
				curl_setopt($curld, CURLOPT_URL,$url);
				curl_setopt($curld, CURLOPT_RETURNTRANSFER, true);

				$curl_output = curl_exec($curld);
				
				$response = json_decode($curl_output);

				
				}
				
				
				if ($response->success == "false") {
					echo "<center>Error message:<b> $msgstatus </b><br><a href=\"index.php\" ><b>Go Back</b></a></center>";

				} else {
				echo "<center>Date: $response->created_at <br>";
					echo "To: $to <br>";
					echo "Message ID: $response->id <br>";
					echo "Message Success: $response->success <br>";
					echo "Message Status: $response->status <br>";
					echo "<br><a href=\"index.php\"><b>Send New SMS Message</b></a></center>";

				}
				
				//Header("Location: $PHP_SELF");
			break;

			default:

			echo "<div id=\"stylized\" class=\"myform\">"
			   ."<b>SMS BulkSMS API Demo Script</b>"
			   ."<p>Remeber to add your API token to the script</p>"
			   ."<form name=\"myform\" method=post action=\"$PHP_SELF?option=sendsms\">"
			   ."<table width=100% border=\"0\">"
			   ."<tr>"
				 ."<td>Numbers<br>(separate with ,)</td>"
				 ."<td><textarea style=\"resize: none;width:80%;border: 1px solid #523f6d;outline:none;\" placeholder=\"examples 00xxxxxxx,011xxxxxxx,+xxxxxxx,\"  rows=\"4\" cols=\"25\" name=\"to\" required=\"required\"></textarea></td>"
			   ."</tr>"
			   ."<tr style=\"padding:10px;\">"
				 ."<td>Message: </td>"
				 ."<td><textarea style=\"resize: none;width:80%;padding;5px;border: 1px solid #523f6d;outline:none;\" wrap=physical rows=\"4\" cols=\"25\" name=\"text\" onkeyup=limiter() required=\"required\"></textarea></td>"
			   ."</tr>"
			   ."<tr style=\"padding:10px;\">"
				 ."<td>Media: (optional)</td>"
				 ."<td><input style=\"resize: none;width:80%;padding;5px;border: 1px solid #523f6d;outline:none;\" wrap=physical name=\"media\" placeholder=\"link (url) of media\"></input></td>"
			   ."</tr>"
				   ."<tr>"
			   ."<td></td>"
			  ."<td>Character left: <script type=\"text/javascript\">"
			   ."document.write(\"<input type=text name=limit size=4 readonly value=\"+count+\">\");"
			   ."</script><br></td>"
			   ."</tr>"
			   ."<tr>"
				 ."<td> </td>"
				 ."<td><input style=\"width:8em;font-size:10px;\" type=submit name=submit value=Send>"
				 ."<div class=\"spacer\"></div></td>"
			   ."</tr>"
			   ."</table>"
			   ."</form>"
				   ."<a href=https://revampsms.com/sms-bulksms-api>SMS BulkSMS API</a>"
			."</div>";


			}

		?>

	</body>
</html>

3 thoughts on “SMS BulkSMS API”

Leave a Reply