Pushie is simple pub-sub notifications over HTTP. Publish a message to your channel (@username) and receive it anywhere as a push notification.
Already got an account? Log in
Pushie lets you send notifications to yourself from anywhere. Create an account, claim a username, and start pushing to every device you are signed in on with a single HTTP request.
No SDK to install. No complex authentication. Just a POST request with your message.
Sign up and choose your username. Every username is a notification channel that belongs to you.
When you want to send a notification, make a POST request to your channel with your message:
curl -X POST https://pushie.net/api/push/your-username \
-H "x-api-key: your-api-key" \
-H "Content-Type: application/json" \
-d '{"text": "Your script finished running!"}'
The notification shows up right away on every device where Pushie is installed and notifications are enabled - phone, tablet, laptop, anywhere.
By default only you can push to your channel. You can extend access to teammates or collaborators by adding them to your allowed users list, and they can push to you through the same simple endpoint.
Notifications are stored for 24 hours and then automatically deleted.
This is ideal for automated alerts. Use it as a webhook receiver for your CI/CD pipeline, AI agents, cron jobs, background workers, or any process that needs to tell you when something happens.