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://api.notifikations.com/api/v1/YOUR_SECRET \ -d 'Build finished ✅'
Works with
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.
Built for AI agents
You kicked off a long job and walked away. How do you know when it's done?
Drop one line at the end of any prompt and get pinged the moment your session finishes — no polling, no checking back.
See the guide →Trigger a notification when any agent run completes, errors out, or hits a checkpoint. One HTTP step, no plugin required.
See the guide →Add an HTTP Request node at any point in your workflow. Works with n8n Cloud and self-hosted — no credentials to configure.
See the guide →Any tool that can make an HTTP request works — Zapier, Make, Langflow, Agno, cron jobs, CI pipelines, and more.
FAQ
Do I need an account or API key?
No accounts, no sign-ups, no API keys. Install the app, copy your webhook URL, and start sending. The secret embedded in the URL is the only credential.
What can I include in a notification?
Every request requires a message. You can also set a title, subtitle, sound, interruption-level (active, time-sensitive, passive, or critical), an open_url that launches when tapped, and an image_url that appears inline. Pass fields as JSON in a POST body, or as query parameters on a GET request.
Does it work on iPad and Mac?
Yes. The app runs on iPhone, iPad, and Mac (via Mac Catalyst). All devices on the same iCloud account share a user webhook URL that fans out to all of them at once.
Is Notifikations free?
You get a 14-day free trial with full functionality — no payment information needed upfront. After the trial, a Pro subscription is required to keep receiving notifications.
How is my privacy protected?
Your raw secret is generated on-device, stored in your Keychain, and synced only to your private iCloud. The server stores only a SHA-256 digest — it never sees the secret itself. Notification contents are never logged or stored server-side; history exists on your device only. Read the full privacy policy →
What if my webhook URL leaks?
Open the app and tap Rotate Secret. Your old URL stops working instantly and you get a fresh one. Device registration and Pro status carry over automatically.
Can I use it from GitHub Actions, CI pipelines, or servers?
Yes — that is the primary use case. Any environment that can make an HTTP request works: curl, wget, Python, Node, GitHub Actions steps, cron jobs, Bash scripts, and more. See the Guides for copy-paste examples.
Does it support GET requests, or only POST?
Both. GET passes fields as query parameters (e.g. ?message=Done&title=Build). POST accepts a plain-text body, JSON, or form-encoded data. GET is handy for browser bookmarks or simple monitoring URLs.