Push alerts
from anywhere.
Send a notification to your iPhone with a single HTTP request — from a script, a CI pipeline, a server, or a curl command in your terminal.
# Send a notification to your device curl -X POST https://notifikations.com/api/v1/YOUR_SECRET \ -d 'Build finished ✅'
How it works
Install the app
The iOS app generates a unique webhook secret on-device and registers your device's push token with the backend. Your raw secret never leaves your device.
Copy your webhook URL
You get two webhook URLs — one that targets only this device, and one that targets all devices signed in with the same iCloud account.
Send from anywhere
POST to your URL with a plain text body, a JSON payload, or just query parameters. No API key, no auth header — the secret in the URL is the credential.
What you can send
Plain text
Just pipe any string as the request body.
Custom title & sound
Full control over the notification presentation.
Deep link
Tap to open a URL directly from the notification.
Image
Attach a remote image that appears in the notification.
Privacy first
The backend only stores your device's APNs push token and a SHA-256 digest of your webhook secret. Your raw secret is generated on-device and stored in your private iCloud — the server never sees it.
Notification contents are never logged or persisted. History lives on your device only. Read the full privacy policy →