Push Notifications (FCM & APNs)
Deliver instant mobile and web push notifications with banner images and data payloads.
# Push Notifications (FCM & APNs)
NotifySetu delivers sub-50ms push notifications across Android, iOS, and modern desktop web browsers.
Dispatching Push Payload
curl -X POST https://api.notifysetu.com/api/v1/notifications/push \
-H "Authorization: Bearer nts_live_key" \
-H "Content-Type: application/json" \
-d '{
"deviceToken": "fcm_dK8s7d6f_live_98ef",
"title": "Flash Sale Alert 🔥",
"body": "Get 50% off on all pro plans for the next 24 hours.",
"imageUrl": "https://yourdomain.com/banner.png",
"data": {
"campaignId": "summer_2026",
"targetUrl": "/pricing"
}
}'