Developer First
Powerful REST API
Automate your workflow. Integrate our robust OTP generation and polling API directly into your software, bots, or bulk marketing tools.
View API Documentation
fetch('https://miahsms.com/bot/getNumber', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
service: 'whatsapp',
country: 'any'
})
})
.then(res => res.json())
.then(data => console.log(data.number));