Push notifications for IoT devices

Your devices,
always connected

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

Dead simple

Three steps to push notifications

1

Create a topic

Get a unique topic URL for your project or device

2

Subscribe

Get notifications on web, mobile, or desktop

3

Push!

Send notifications with a simple HTTP request

Built for IoT

Any Device

Raspberry Pi, Arduino, ESP32, servers — anything with HTTP

Instant Delivery

Real-time push to all subscribed devices

Simple API

One curl command. No SDKs required.

Mobile Ready

iOS and Android push notifications

Secure

Optional authentication and private topics

Webhooks

Forward notifications to Slack, Discord, email

Works everywhere

Send from any language or platform

Bash / cURL
# 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-topic
🐍 Python
import requests

requests.post(
    "https://iotpush.com/my-topic",
    data="Sensor triggered!",
    headers={
        "Title": "Motion Detected",
        "Priority": "high"
    }
)

Simple Pricing

Free for hobby projects, affordable for production

Free

For makers & hobby projects

$0
  • 100 messages/day
  • 3 topics
  • Web & mobile push
  • 24h message history
Get Started
Popular

Pro

For serious projects

$9/mo
  • 10,000 messages/day
  • Unlimited topics
  • Email & SMS delivery
  • Webhooks (Slack, Discord)
  • 30 day history
Start Free Trial

Business

For teams & production

$49/mo
  • Unlimited messages
  • Team access
  • Private topics
  • API keys
  • Priority support
Contact Sales

Ready to push?

Get your first notification in under a minute.

Create Free Account