HTTP in. Lock-screen out.

Nudgehook is a push service for your iPhone. Install the app, copy your personal webhook URL, then POST (or GET) from CI, a cron job, or an agent. We route the alert through Apple’s push network. Message bodies are not kept after delivery.

# plain text body = message
curl -X POST https://nudgehook.iamadolan.dev/api/v1/YOUR_SECRET \
  -d 'Build finished'
Checking API…

How to use it

Privacy

API

Base: https://nudgehook.iamadolan.dev/api/v1
Health: /api/v1/health
Field reference is in the app under More → API cheat sheet.

JSON body

{
  "title": "CI",
  "message": "All tests passed",
  "sound": "default",
  "open_url": "https://github.com"
}