Skip to content

Use case

An SMS API for whatever you're building.

IoT alerts, home automation, monitoring, side projects — send SMS from a spare phone.

Why builders pick SMSKit

  • Clean REST, six languages of samples, webhooks. No SDK lock-in.
  • KES 10/phone is cheap enough for a hobby project; robust enough for production.
  • Fully managed — no server to run. Pair a spare phone and you're sending in minutes.

How SMSKit fits

Build whatever you need on a clean REST API. Webhooks push events; idempotency keys keep retries safe.

Example bash
# Server down? Text yourself from a Raspberry Pi cron job.
curl https://api.smskit.cloud/api/sms/send \
  -H "X-Api-Key: sk_live_your_key" -H "Content-Type: application/json" \
  -d '{ "recipient": "+254712345678", "message": "ALERT: api-prod CPU at 98%" }'