msg logo

how to send whatsApp messages using api

send whatsapp messages easily using api and start in minutes.

Choose your preferred programming language to view the full example with detailed explanation and steps

const response = await fetch("https://api.sendmsg.dev/message/batch", { method: "POST", body: JSON.stringify({ to: ["+1234567890", "+0987654321"], message: "Hello from MSG!", // token: "YOUR_API_TOKEN" // Optional, gives full access }) }); const result = await response.json();
Details