Quick start
Last updated·1 min read
Send your first push notification in under 2 minutes.
1. Download the app
Install TheNotificationApp on your iPhone from the App Store.
Sign in with Apple — no password needed.
2. Create an application
Open the app and go to the Applications tab and tap "+ Add Application". Give it a name (e.g. "My Server").
Then go to the Settings. Under the Implementation section you will be able to find different implementations showcases
Simply tap your application card under Application Keys to copy the API Key
3. Send your first notification
Paste your API key into the command below and run it in your terminal:
curl -X POST https://thenotification.app/api/sendNotification \
-H "app_key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "Hello",
"body": "Your first notification works!"
}'
Your phone should buzz within a second.
What's next?
- Send notifications from Python, JavaScript, or Bash
- Set up webhooks to receive notifications from GitHub, Coolify, or any service
- Read the API reference for all available fields