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://ntf-worker.buzagloidan.workers.dev/api/v1/YOUR_SECRET \
  -d 'Build finished ✅'

How it works

1

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.

2

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.

3

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 →