Custom SMS
Bangladeshi number Custom SMS sender via randomized ip numbers, Monthly Paid Access Only.
Endpoint
GET
https://api.lmnx9.shop/custom/sms.php?key=&number=&message=
Code Examples
cURL
curl -X GET "https://api.lmnx9.shop/custom/sms.php?key=&number=&message=" -H "Content-Type: application/json"JavaScript
fetch("https://api.lmnx9.shop/custom/sms.php?key=&number=&message=")
.then(function(r){return r.json()})
.then(function(d){console.log(d)});Python
import requests
r = requests.get("https://api.lmnx9.shop/custom/sms.php?key=&number=&message=")
print(r.json())PHP
<?php
$d = file_get_contents("https://api.lmnx9.shop/custom/sms.php?key=&number=&message=");
print_r(json_decode($d, true));Example Response
{
"success": "true",
"message": "sms sent successfully",
"developer": "DARK LMNx9",
"telegram": "@x_LMNx9"
}