TYO Notify
Send a push notification to your phone or this page with a plain PUT or POST — no SDK, no socket, no account. Pick a topic, subscribe to it, then curl it. This is the open, ntfy-style notification surface of TYO MQ.
○ connecting…
Anyone who knows a topic name can publish and read it — treat the topic like a password, and don't send anything private here (it's a public playground).
1 · Send a test
…or from your terminal
curl (simple)
curl -d "Backup finished" https://freemq.tyo.com.au/notify/
curl (title, priority, tags)
curl -H "Title: Disk full" -H "Priority: high" -H "Tags: warning,skull" \
-d "Server is almost out of space" https://freemq.tyo.com.au/notify/curl (PUT)
curl -T - https://freemq.tyo.com.au/notify/ <<< "Sent with PUT"
2 · Watch it arrive
Messages you publish to appear here, live over SSE.
3 · Get it on your phone
The TYO Notify mobile app (and any UnifiedPush distributor) can register for a topic's pushes, so a curl lights up your phone. Registration:
register a device
curl -d '{"transport":"unifiedpush",
"endpoint":"<your-endpoint-url>"}' \
https://freemq.tyo.com.au/notify//registerEach publish chooses content (message shown on the phone) or a privacy-first contentless wake via the X-Tyo-Push header.
How private is this? TYO Notify topics are public and non-durable — great for alerts, CI, webhooks, and demos. For private, authenticated delivery use a TYO MQ account realm with a token. For end-to-end-encrypted messaging, see Secure DM.
