Send push notifications, emails, and webhooks from any device with a single HTTP request. Raspberry Pi, Arduino, servers — if it can curl, it can notify everywhere.
# Send a notification in one line
curl -d "Your sensor triggered!" iotpush.com/your-topic
Three steps to push notifications
Get a unique topic URL for your project or device
Get notifications on web, mobile, or desktop
Send notifications with a simple HTTP request
Push, email, and webhook — all from one API call. Notify everywhere at once.
Raspberry Pi, Arduino, ESP32, servers — anything with HTTP
Real-time push to all subscribed devices
One curl command. No SDKs required.
iOS and Android push notifications
Optional authentication and private topics
Send from any language or platform
# Simple message
curl -d "Hello from my Pi!" \
iotpush.com/my-topic
# With title and priority
curl -H "Title: Alert!" \
-H "Priority: high" \
-d "Temperature exceeded 80°C" \
iotpush.com/my-topicimport requests
requests.post(
"https://iotpush.com/my-topic",
data="Sensor triggered!",
headers={
"Title": "Motion Detected",
"Priority": "high"
}
)If it can make an HTTP request, it works with iotpush
Free for hobby projects, affordable for production
For makers & hobby projects
For serious IoT projects
For teams & production