Smstools

SMS custom work

Are you looking for customized SMS solutions? We can develop them for you!

We can developer SMS software or automation scripts for your company!

You want a simple, effective and cost-effective way to communicate via SMS with your customers, audience or groups, but you don't find exactly what you're looking for? Then please contact us. Smstools has years of experience in offering successful SMS services.

Our standard software includes many features.
We can create add-ons to our existing software so it will meet your requirements.

REGISTER
We can developer SMS software or automation scripts for your company!

Some possibilities of SMS customization


SMS integration in your webshop


integrate SMS services into your planning system.


Adding additional functionalities to our SMS software.

<?php
	$ch = curl_init();
	$url = "https://api.smsgatewayapi.com/v1/message/send";
	$client_id = "XXX"; // Your API key
	$client_secret = "YYY"; // Your API secret
	$data = [
		'message' => "Hello World", //Message
		'to' => "32495123456", //Receiver
		'sender' => "YourName" //Sender
	];
	curl_setopt($ch, CURLOPT_URL, "$url");
	curl_setopt($ch, CURLOPT_POST, true);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
	curl_setopt($ch, CURLOPT_VERBOSE, true);
	curl_setopt($ch, CURLOPT_HTTPHEADER, [
		"X-Client-Id: $client_id",
		"X-Client-Secret: $client_secret",
		"Content-Type: application/json",
	]);
	curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
	$response = curl_exec($ch);
?>

Easy SMS API integration

With our SMS API you can quickly extend your software with a reliable SMS integration. Thanks to our clear API documentation and official SDKs for PHP, Node.js, Ruby, Python and Powershell, you can connect your website, webshop or application to our powerful and scalable SMS platform in just a few minutes.

API documentation