Broadcast notices for all users in one product or one tenant.
publishSecret = siteSalt + scopeKey
Build publishSecret from your own fields like site salt + post id + comment id.
Derive channelId instantly, then publish and subscribe without stored token mappings.
publishSecret = siteSalt + scopeKey + targetKey + eventKeyOne deterministic formula can target global alerts, one resource, or one sub-resource event.
Broadcast notices for all users in one product or one tenant.
publishSecret = siteSalt + scopeKey
Target one object only, such as a post, order, issue, or room.
publishSecret = siteSalt + resourceType + resourceId
Go down to one event stream: comment thread, job run, or shipment update.
publishSecret = siteSalt + resourceType + resourceId + eventId
Start from siteSalt + scopeKey, then append keys for the exact target you need.
publishSecret = siteSalt + scopeKey
channelId = sha256(publishSecret)[0:32] → https://alrim.me/<channelId>Three participants, zero accounts, one API call.
Pick any string as your publishSecret (publishing secret).
The server derives channelId via SHA-256 — no registration needed.
Share alrim.me/<channelId> with subscribers.
They open it in the app or browser — no account, no login.
POST to /api/notify with your publishSecret.
All subscribers receive real-time push notifications instantly.
Everything you need, nothing you don't.
No key management server. channelId is derived from publishSecret on every request.
Share a URL. Users tap it to subscribe. Works in browser and native app.
Powered by Firebase Cloud Messaging. Delivery across mobile and web in seconds.
From global notices to one comment thread, route every event with one deterministic formula.
Three services, one unified notification pipeline.
Derive channelId locally in your browser. Nothing leaves this page.
Send with X-Alrim-Key. The server maps publishSecret to channelId deterministically.
curl -X POST https://alrim.io/api/notify \
-H 'X-Alrim-Key: <publishSecret>' \
-H 'Content-Type: application/json' \
-d '{
"channelTitle": "Channel",
"title": "alrim",
"body": "Hello from alrim",
"data": {
"kind": "manual",
"url": "https://alrim.me"
}
}'No sign-up required. Pick a secret, share a link, and start sending notifications in seconds.