Multi-channel notifications for IoT

One API call.
Push, email, and webhook.

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

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

Multi-Channel Delivery

Push, email, and webhook — all from one API call. Notify everywhere at once.

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

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"
    }
)

Works with everything

If it can make an HTTP request, it works with iotpush

n8n
cURL / Any HTTP
Arduino / ESP32
Raspberry Pi
Node.js / Python

Simple Pricing

Free for hobby projects, affordable for production

MonthlyAnnual Save 20%

Free

For makers & hobby projects

$0
  • 3 topics
  • 1,000 pushes/month
  • Push + email delivery
  • Public topics only
Get Started
Popular

Pro

For serious IoT projects

$9/mo
  • 10 topics
  • 10,000 pushes/month
  • Private topics
  • Webhooks (Slack, Discord, email)
  • 30-day message history
Start Pro

Business

For teams & production

$29/mo
  • Unlimited topics
  • 100,000 pushes/month
  • Private topics
  • Webhooks
  • Priority support
  • 90-day message history
Start Business

Ready to push?

Get your first notification in under a minute.

Create Free Account