Skip to content

Notifer Documentation

Simple HTTP-based pub-sub notification service

Send push notifications to your phone or desktop via HTTP PUT/POST. Subscribe from any app, script, or the web. No signup required for public topics.

Quick Example

curl -d "Server backup completed successfully" \
  -H "X-Priority: 3" \
  -H "X-Tags: backup,success" \
  https://app.notifer.io/server-alerts
const eventSource = new EventSource('https://app.notifer.io/server-alerts/sse');
eventSource.onmessage = (event) => {
  const message = JSON.parse(event.data);
  console.log(message.message);
};
notifer subscribe server-alerts

Key Features

  • Instant Delivery - Real-time push notifications via SSE and WebSocket
  • Mobile Apps - Native iOS and Android apps with push notifications
  • Simple API - Publish with a single HTTP request
  • Team Collaboration - Share topics with your team (TEAM plan)
  • Private Topics - Access control for sensitive notifications
  • API Keys - Authenticate scripts and integrations
  • Markdown Support - Rich text formatting in messages
  • Tags & Priority - Filter and organize notifications

Getting Started

User Guides

Use Cases

Development & DevOps
Monitor deployments, CI/CD pipelines, server health checks, backup completion. Use team collaboration to share alerts across your engineering team.
Personal Automation
Home automation alerts, RSS feed updates, calendar reminders, task completions
Business Applications
Order notifications, customer support alerts, system monitoring, team updates. Perfect for team collaboration with role-based access.
IoT & Smart Home
Sensor alerts, security notifications, device status updates

Browse public topics to discover community-shared notifications.

Publishing & Subscribing

Learn how to send and receive notifications:

Publishing: - HTTP Publishing - Publish with curl or any HTTP client - Python SDK - Python library and examples - JavaScript SDK - Node.js and browser examples - CLI Tool - Command-line interface

Subscribing: - Web Subscriptions - Subscribe via browser - Mobile App - iOS and Android apps - Server-Sent Events - Real-time SSE integration

Features

API Reference

Next Steps

New to Notifer? 1. Account Setup - Create your account 2. Quickstart Guide - Send your first notification 3. Dashboard Guide - Navigate the interface 4. Creating Topics - Organize your notifications

Developers: - HTTP Publishing - Integrate with any language - API Keys - Authenticate your scripts - Private Topics - Secure notifications

Mobile Users: - Mobile App Guide - Install and configure apps - Notifications - Setup push notifications


Need Help?