Documentation
Use the language of your choice
Javascript
PHP
Python
fetch("/api/v1/send/sms", {
"method": "POST",
"headers": {
"Content-Type": "application/json",
"Authorization": "API_KEY"
}",
"body": {"message":"Monday should not be a working day","to":"26650111000" }
})
.then(response => {
console.log(response);
})
.catch(err => {
console.error(err);
})