Push Notifications

10K/month free

Web & mobile push

Self-Hosted

Cross-platform push notifications for web (Chrome, Firefox, Safari) and mobile (iOS, Android). Features user segmentation, scheduled delivery, rich media support, and delivery analytics.

Overview
Pricing
Usage
Docs
Examples
Send Pushpush.ts
typescript
import { sylphx } from '@sylphx/sdk'

await sylphx.push.send({
  userId: 'user_123',
  title: 'New message!',
  body: 'You have a new message from John',
  data: { messageId: 'msg_456' },
})
Broadcastbroadcast.ts
typescript
await sylphx.push.broadcast({
  segment: { plan: 'pro' },
  title: 'New feature!',
  body: 'Check out our latest update',
  url: '/features/new',
})

Looking for more examples?

View on GitHub