Web & mobile push
Cross-platform push notifications for web (Chrome, Firefox, Safari) and mobile (iOS, Android). Features user segmentation, scheduled delivery, rich media support, and delivery analytics.
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' },
})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