A Gotify alternative for iPhone users

July 23, 2026 · 3 min read

Gotify is the purist's answer: your server, your data, open source, no cloud. That's genuinely valuable – until you pull out an iPhone or realise you now maintain a server just so your phone can buzz.

Where Gotify runs into limits

  • No official iOS app. Gotify ships an Android client and a web UI; on iPhone you depend on third-party clients. Apple's APNs requirement makes a self-hosted push path genuinely hard.
  • You are the operator. Server, TLS certificate, updates, backups, reachability from outside – all yours. Fine as a hobby, overhead when you just want alerts.
  • Reachability: a webhook from Stripe or GitHub must reach your server from the public internet – meaning port forwarding or a reverse proxy, plus the security work that comes with it.

The Webhooky way

Native apps for iOS and Android, delivery through APNs/FCM, no server of your own. Install, and your endpoint URL with a random 24-character key exists – no account, no certificates:

« Gotify »
curl -X POST "https://gotify.example.com/message?token=APP_TOKEN" \
  -F "title=Backup done" -F "message=nightly rsync ok"

« Webhooky »
curl -X POST https://api.webhooky.app/YOUR_KEY \
  -d '{"title":"✅ Backup done","message":"nightly rsync ok","sound":"level_up_2"}'

The honest trade-off

With Gotify the messages stay on your machine; with Webhooky they pass through Google's and Apple's push infrastructure – as they must for any iOS delivery. If that is unacceptable for your data, Gotify is right and you should keep it. If your goal is “my phone should reliably buzz, on both platforms, without me running anything”, Webhooky is the shorter path. Full field overview: the comparison of all seven tools.

Get Webhooky

Free for your first 100 notifications – set up your endpoint in two minutes.

Get it on Google Play Download on the App Store