SDKs & Libraries
Build SMS Features Faster
Official MessageBot SDKs handle authentication, retries, and delivery tracking so you can focus on shipping features — not plumbing.
How SDKs Work
1
Authenticate
Initialize once using your API token
2
Send Messages
Send OTPs or transactional SMS
3
Track Delivery
Handle delivery reports via webhooks
SDK Examples
node
import MessageBot from "messagebot-sdk";
const client = new MessageBot("YOUR_API_TOKEN");
await client.sendSMS({
to: "918744815388",
senderId: "TSTBOT",
message: "Hello from Node.js"
});Prefer Raw API?
SDKs internally call the same REST endpoint. If you need maximum control or already have an HTTP client, you can use the API directly.
https://api2.messagebot.in/SendSmsV2POST