Channel-Based Notification Platform

Add notifications
to any app

QwikBroad lets you create notification channels, manage subscribers, and deliver real-time messages — via a push-ready widget or a simple REST API. No notification infrastructure to build yourself.

Mobile App
Web Widget
REST API
index.html
<!-- Drop-in notification widget -->
<script
  src="/widget.js"
  data-channel="your_channel_key"
></script>

// Or send from your backend via API
POST /api/external/channels/{id}/send
X-API-KEY: your_api_key

{
  "title": "Deploy complete 🚀",
  "body":  "v2.1 is now live"
}
Delivered to all subscribers on mobile and web
What's Included

Everything in one platform

From channel creation to real-time delivery — no other service required.

Channels & Subscriptions

Create public or private notification channels. Users subscribe to the topics they care about. Private channels are only discoverable via a unique channel key.

Native Mobile App

Subscribers get a dedicated mobile app with a clean channel inbox, discover feed to browse public channels, and push notifications delivered directly to their device.

Embeddable Widget

One <script> tag drops a fully functional notification bell and feed into any website, delivering messages in real-time.

REST API & API Keys

Every channel gets a unique API key. Any backend service can trigger notifications with a simple POST request and an X-API-KEY header. No SDK required.

Rich Content & Attachments

Messages support HTML content, inline images, and file attachments. Target all subscribers globally or send to specific users by ID.

Scheduling & Drafts

Write a message now and schedule it to send at a specific date and time. Save drafts to revisit before sending. A background scheduler handles delivery automatically.

Polls

Create polls that appear inline in the message feed. Subscribers vote on options; one vote per user. View live results from the dashboard.

Emoji Reactions

Subscribers can react to messages with a curated set of emojis. Reactions are togglable and visible to channel owners in the dashboard.

Auth & Access Control

Sign up with email/password or Google OAuth. JWT-based sessions. Channel owners have full control; subscribers see only what's addressed to them.

Quick Start

Up and running in three steps

From sign-up to your first delivered notification.

1

Create a Channel

Register, then create your first notification channel from the dashboard. Choose public or private, add a description and icon. You'll get a unique API key and channel key.

POST /api/channels
2

Embed or Subscribe

Drop widget.js on your site for a ready-made notification bell. Mobile users subscribe and receive notifications through the QwikBroad app.

POST /api/channels/:id/subscribe
3

Send Messages

Send from the dashboard or trigger from your own backend with an API key. Messages arrive in real-time on the mobile app and web widget for all subscribers.

POST /api/external/channels/:id/send
Mobile App
Subscribers use the QwikBroad mobile app to browse channels, read their inbox, and receive push notifications.
Web Widget
A single script tag embeds a notification bell and live feed into any website, updating in real-time.
REST API
Send from your own backend with a single authenticated POST — no SDK or library needed.
Pricing

Simple, honest pricing

Start free. Upgrade when you need more.

Free

For personal projects and experimentation.

$0 /month
Get Started Free
  • 1,000 messages/mo
  • Public Channels
  • Mobile App
  • Web Widget
  • Private Channels

Starter

For small apps that need private channels.

$10 /month
Get Started
  • 10,000 messages/mo
  • Public & Private Channels
  • Mobile App + Web Widget
  • Scheduling & Drafts
  • Priority Support

Business

High-volume, dedicated infrastructure.

$99 /month
Contact Us
  • Unlimited messages
  • Dedicated Setup
  • Custom Integrations
  • SLA Agreement
  • Account Manager

Ready to add notifications to your app?

Create a channel, embed the widget, and your first notification is minutes away.

FAQ

Common questions

Straightforward answers about how QwikBroad works.

What exactly is QwikBroad?

QwikBroad is a channel-based notification platform. You create channels (like "System Alerts" or "Product Updates"), users subscribe to them, and you send messages from a dashboard or via a REST API. Subscribers receive messages in real-time through the QwikBroad mobile app or an embeddable web widget.

How does the embeddable widget work?

Add a single <script src="/widget.js" data-channel="your_key"> tag to any page. It renders a notification bell and live feed that updates in real-time as new messages arrive — no page refresh needed.

What's the difference between public and private channels?

Public channels appear in the discovery feed and can be subscribed to by anyone. Private channels are unlisted — they're only accessible via the unique 10-character channel key, which you share selectively with your users.

Can I send notifications from my own backend?

Yes. Each channel has an API key. POST a JSON payload to /api/external/channels/{id}/send with your key in the X-API-KEY header. No SDK or client library needed — any HTTP client works.

Does QwikBroad send emails?

Not currently. QwikBroad delivers notifications through the mobile app and the embeddable web widget. Email delivery is not supported at this time.

Can I target a specific user instead of everyone?

Yes. When sending a message you can specify one or more target user IDs. Those users will see the message in their feed; other subscribers won't. Leave the target empty to broadcast to all channel subscribers.