High-performance SMS delivery through multiple masked channels. All requests processed asynchronously.
{
"status": "success",
"number": "09123456789",
"amount": 10,
"success": 48,
"fail": 2,
"provider": {
"A*****n": 10,
"L*C": 9,
"E***************g": 10,
"W****e": 9,
"H*******n": 10
},
"timeTaken": "312.45s",
"owner": "t.me/isnotsin"
}
{
"status": "error",
"message": "Error description"
}
curl "Loading..."
fetch('Loading...')
.then(r => r.json())
.then(d => console.log(d));
import requests
r = requests.get(
'Loading...',
params={'number': '09123456789', 'amount': 10}
)
print(r.json())