// how it works
From zero to notified
in under 2 minutes.
No SDKs. No integrations dashboard. Just an API key, a URL, and notifications that find you wherever you are.
// integrate anywhere
Works from any language,
any tool.
One REST endpoint. No SDK required. Works from bash, Python, Node.js, Go, Ruby — anything that can make an HTTP request.
Claude DesktopMCP
{
"mcpServers": {
"open-notifier": {
"url": "https://mcp.open-notifier.io/mcp?api_key=onk_..."
}
}
}curl / bashREST
curl -X POST https://api.open-notifier.io/api/v1/notifications \
-H "X-Api-Key: onk_..." \
-H "Content-Type: application/json" \
-d '{"title":"Done!","body":"Your job finished."}'PythonREST
import requests
requests.post(
"https://api.open-notifier.io/api/v1/notifications",
headers={"X-Api-Key": "onk_..."},
json={"title": "Done!", "body": "Your job finished."}
)Node.jsREST
await fetch("https://api.open-notifier.io/api/v1/notifications", {
method: "POST",
headers: { "X-Api-Key": "onk_...", "Content-Type": "application/json" },
body: JSON.stringify({ title: "Done!", body: "Your job finished." }),
});Ready to stop
missing events?
Free account, push notifications forever, upgrade for Telegram & WhatsApp.