Jednoduché SMS API
Využijte již existující knihovny nebo připravte vlastní napojení svého systému na naše moderní cloudové rozhraní.
Jak to funguje?
Přihlaste se do webové administrace a získejte API klíč.
API klíč vložte do HTTP požadavku nebo do existující knihovny
SMS zprávy můžete nyní odesílat automatizovaně
Příklady použití
- PHP
- JavaScript SDK
- Node.js
<?php
$apikey = 'your-api-key-here'; // Replace with your actual API key
$number = 'phone-number-here'; // Replace with the target phone number
$text = 'message-text-here'; // Replace with the message text
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://http-api.smsmanager.cz/Send');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query([
'apikey' => $apikey,
'number' => $number,
'message' => $text
]));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Content-Type: application/x-www-form-urlencoded'
]);
// Execute the request and capture the response
$response = curl_exec($ch);
curl_close($ch);
// Process the response
list($status, $id) = explode('|', $response);
if ($status == "OK") { // SMS was sent successfully
echo 'Status: ' . $status;
echo 'ID: ' . $id;
} else {
echo 'Status: ' . $status;
}
const SmsManager = require('smsmanager-js-api');
const sender = new SmsManager('your-api-key-here');
sender.send('phone-number-here', 'Your message text')
.then(result => {
if (result.success) {
console.log('SMS sent successfully. Message ID:', result.messageId);
} else {
console.log('Failed to send SMS');
}
})
.catch(error => {
console.error('Error sending SMS:', error);
});
const response = await fetch('https://http-api.smsmanager.cz/Send', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
body: new URLSearchParams({
apikey: 'your-api-key-here',
number: 'phone-number-here',
message: 'message-text-here'
})
});
const responseText = await response.text();
const [status, id] = responseText.split('|');
if(status == "OK"){ // SMS was sent successfully
console.log('Status:', status);
console.log('ID:', id);
}
else{
console.log('Status:', status);
}