Web Push.
Reimagined
for Real-Time.

Notifications that update live. Send once — watch them evolve. Built for websites that demand instant, dynamic push at scale.

No credit card required
Free up to 1,000 subscribers
99.98% uptime SLA
app.sharepush.io/dashboard
24.7M
Delivered today
↑12.4%
3.2ms
Avg latency
↑0.3ms
98.7%
Click-through
↓1.2%
Latest delivery events LIVE
17:41:11 Campaign dispatched 2,041 recipients
17:41:13 Delivery confirmed 1,988 devices
17:41:20 Clicks received 842 clicks
Live Score Alert
Updating…
LIVE
Flash Sale — 2h left
1.2M sent
Done
Breaking News
Queued
Scheduled
Web Push In Real Life

One notification, real OS experience.

The same web push notification appears in native system UI on MacOS, Android and Windows. Then it updates live in-place without firing a second push.

Notification preview as users receive it
SharePush
Sharepush now

Breaking: a New Planet discovered

NASA confirms Kepler-1708 c. Tap to read what makes this world potentially habitable.

SharePush
Sharepush now

Breaking: a New Planet discovered

New exoplanet detected with signs of water vapor. Open for details and trajectory map.

WEB PUSH android chrome
SharePush
Sharepush via Edge now

Breaking: a New Planet discovered

Astronomers announced a confirmed find tonight. Click to open the full mission briefing.

macOS Safari
Android Chrome
Windows Edge

Live update stack

IN-PLACE UPDATE

The top card jumps out, the next one takes over. Same notification thread, new content.

SharePush
Sharepush

SharePush
Sharepush

send once
update payload
no second push
Everything you need

Built for speed.
Designed for scale.

Every feature you need to send, update, and analyze push notifications at the infrastructure level.

Core

Real-Time Live Updates

Push once, update forever. Notifications dynamically refresh with live data — scores, prices, statuses — without sending new pushes.

Smart Segmentation

Target subscribers with surgical precision. Build segments using advanced AND/OR conditions with device, location, behavior, and custom attributes.

Notification Scheduling

Send at the perfect moment. Schedule campaigns in subscriber time zones. Set recurring sends, drip sequences, and optimal time delivery.

Enterprise

Multi-Site Networks

Manage hundreds of sites from one dashboard. Create site groups, share subscriber pools, and send cross-site campaigns at network scale.

Analytics & Tracking

Deep delivery insights with real-time dashboards. Track impressions, clicks, conversions, and revenue attribution across every campaign.

<5 ms

Instant Infrastructure

Sub-5ms delivery at scale. Our global edge network ensures notifications reach browsers the moment you press send — no queuing delays.

Command center

Your entire push operation
in one dashboard.

A premium control center designed for clarity. See everything, act instantly, measure what matters.

Dashboard
A
Sent today
↑ 12.4%
24.7M
Delivery rate
↑ 0.3%
98.7%
CTR (avg)
↑ 2.1%
34.2%
P99 latency
↓ 0.4ms
3.1ms
Delivery performance
Delivered vs opened · last 24h
Delivered Opened
00:0004:0008:0012:0016:0020:00now
Active campaigns
Live Score
2.1M reach
LIVE
Flash Sale
847K reach
Sending
App Update
1.3M reach
Queued
Newsletter
560K reach
Paused
Recent campaign activity
Last 10 events
SYNC NOW
Flash Sale - 2h left
1.2M sent
COMPLETED
API Live Dispatch
5 updates
COMPLETED
Sports Alert
20 dispatches
ACTIVE
Samsung Browser Test
4 sends
COMPLETED
Top locations
United States 38%
Germany 21%
United Kingdom 14%
Brazil 11%
Other 16%
Compose notification 1,247,823 subscribers
Title
Summer Sale — 48 hours only
Body
Up to 70% off. Free shipping on all orders today.
SharePush
Summer Sale — 48 hours only
Up to 70% off. Free shipping on all orders today.
yoursite.com · just now
Segment Builder
Matching: 847,291 subscribers
Segment High-value European users Draft
Match
of the following conditions:
IF
Country is one of UK, Germany, France
AND
Sessions (30d) is greater than 5
AND
Browser is not Safari
AND
Last seen within last 7 days
Segment reach 847,291 / 1,247,823
68% MATCH RATE Projected clicks: 289,402 Estimated CTR: 34.2%
68% of total subscribers match this segment
Advanced Segmentation

Target the right people.
Every single time.

Build segments of any complexity with our visual query builder. Combine dozens of conditions — behavioral, geographic, device-level — and see real-time audience counts update instantly.

AND/OR logic
Layer conditions with boolean logic to build precise audience segments of any complexity
100+ attributes
Target by country, device, browser, session count, custom events, and your own data
Live preview
Audience size updates as you build — no guessing, no wasted sends
Save & reuse
Save segments as templates. Combine and exclude segments on the fly
Multi-Site Networks

One dashboard.
Every site.

Manage your entire portfolio of websites from a single control plane. Group sites into networks, share subscriber pools, and broadcast across your entire ecosystem.

SharePush Hub
4 Networks
1.2M total subscribers
Sports Network
Sending
341K
subscribers
arsenal.co.uk
livesports.io
matchday.tv
E-commerce
Live
487K
subscribers
shopacme.com
dealshub.io
pricewatch.net
News Media
Queued
229K
subscribers
thepost.com
newsflash.io
dailybrief.net
Finance
Idle
143K
subscribers
fintrack.io
marketstoday.com
Cross-network broadcast
Send to all 1.2M subscribers across all 4 networks simultaneously
Centralized control
Manage all sites from a single dashboard — no switching between accounts or tabs
Shared subscriber pools
Sync subscribers across sites in a network for unified marketing campaigns
Granular permissions
Role-based access control — give teams access to their sites only
For Developers

Integrate in minutes.
Scale to billions.

A developer-first platform with clear APIs, SDKs in every major language, and documentation that actually makes sense.

<script src="https://sharepush.io/sdk/sharepush-sdk.js"></script>
<script>
Sharepush.init({
  apiUrl: 'https://api.sharepush.io',
  apiKey: 'YOUR_SITE_TOKEN',
  serviceWorkerPath: '/sharepush-sw.js',
  autoPrompt: true,
  useBounce: true,
  category: 'general',
  promptTitle: 'Stay updated',
  promptMessage: 'Enable notifications for live updates.',
  delay: 3000
});
</script>
(function() {
  const spToken = 'YOUR_SITE_TOKEN';
  const spUrl = 'https://api.sharepush.io';

  importScripts(`${spUrl}/api/v1/sw-logic.js?token=${spToken}`);
})();
curl -X POST 'https://api.sharepush.io/api/v1/create/campaign' \
  -H 'Authorization: Bearer YOUR_API_TOKEN' \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "Flash Sale Campaign",
    "type": "live",
    "status": "draft",
    "title": "Flash Sale - 2 hours",
    "message": "Up to 60% off today only.",
    "url": "https://example.com/sale"
  }'
curl -X POST 'https://api.sharepush.io/api/v1/campaigns/YOUR_CAMPAIGN_ULID/dispatch' \
  -H 'Authorization: Bearer YOUR_API_TOKEN' \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
    "title": "Live score update",
    "message": "Arsenal 2 - 1 Chelsea",
    "url": "https://example.com/live",
    "live": true
  }'
Campaign Console
24
+6 active
Subscribers
13
6 active
Segments
6
rule builder ready

Everything you need.
Nothing you don't.

Build on a battle-tested API with SDKs, webhooks, and documentation designed for developers who ship fast.

REST API
Clean, predictable REST API with full OpenAPI spec. Send, update, schedule, and query — all through HTTP.
SDKs
Official SDKs for PHP, JavaScript/Node, Python, Go, and Ruby. Community SDKs for .NET, Java, and more.
Webhooks
Real-time event delivery for clicked, dismissed, and delivered events. Retry logic built in.
Full documentation
Comprehensive guides, API reference, and real-world examples. Get from zero to sending in under 5 minutes.
Explore documentation →
Ready to launch?

Your notifications.
Delivered live.

Join 12,400+ websites already using SharePush to deliver instant, live-updating push notifications that keep subscribers engaged.

No credit card required
Free up to 1,000 subscribers
Deploy in minutes
99.98% uptime SLA