Skip to content

Use case

Alerts and notifications from a number people trust.

Order updates, appointment reminders, system alerts — sent from your own phones.

Why teams switch

  • Critical alerts can't afford spam filtering.
  • Flat cost beats per-message billing on high-frequency notifications.
  • Replies matter — customers text back.

How SMSKit fits

Two-way inbox catches replies. Webhooks fire on every state change so your system stays in sync. Multi-device routing handles bursts.

Example js
await fetch("https://api.smskit.cloud/api/sms/send", {
  method: "POST",
  headers: { "X-Api-Key": "sk_live_your_key", "Content-Type": "application/json" },
  body: JSON.stringify({ recipient: "+254712345678", message: "Your order #1042 is out for delivery." })
});