Powerful Push Notification Service

Send notifications to mobile apps, web browsers, and email with our reliable API

New Message

Your order has been shipped!

Web Notification

Welcome back! You have 3 new updates.

Email Alert

Your subscription expires in 3 days.

Get Started

Powerful Features

Cross Platform

Native notification support for iOS, Android and web, so you can reach your users wherever they are

Scalable Delivery

Broadcast information to unlimited subscribed devices using Device Interests, with 1 million+ messages per minute

Security

Create a secure channel between your users and all of their push notification-enabled devices

Insights

Optimise your notifications experience with delivery and open tracking, reporting and webhooks

REST API

Simple and powerful REST API with comprehensive documentation and SDKs for popular languages

View API Docs
Scheduling

Schedule notifications for optimal delivery times and set up automated campaigns

Harga yang Sederhana dan Transparan

Gratis

Rp 0/bulan

  • 100 notifikasi/bulan
  • Push notifications
  • Email notifications
  • Analitik dasar
  • Dukungan standar
Mulai Gratis
Enterprise

Rp 1.500.000/bulan

  • Unlimited notifications
  • Semua channel
  • Analitik lanjutan
  • Dukungan khusus
  • Integrasi custom
  • SLA agreement
Hubungi Sales

API Documentation

Quick Start

Send your first notification in minutes with our simple REST API:

1. Get your API key
curl -X POST https://yourapp.com/api/register \
  -H "Content-Type: application/json" \
  -d '{"username":"demo","email":"demo@example.com","password":"password123"}'
2. Send a push notification
curl -X POST https://yourapp.com/api/send-notification.php \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your-api-key" \
  -d '{
    "type": "push",
    "title": "Hello World!",
    "message": "This is your first notification",
    "recipients": ["device-token-1", "device-token-2"]
  }'
3. Send an email notification
curl -X POST https://yourapp.com/api/send-notification.php \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your-api-key" \
  -d '{
    "type": "email",
    "title": "Welcome!",
    "message": "<h1>Welcome to our service!</h1><p>Thanks for signing up.</p>",
    "recipients": ["user@example.com"]
  }'