Send push notifications from any device with a simple HTTP request. Raspberry Pi, Arduino, servers — if it can curl, it can push.
# 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
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
Forward notifications to Slack, Discord, email
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"
}
)Free for hobby projects, affordable for production
For makers & hobby projects
For serious projects
For teams & production