Send your first notification
Connect a service, choose a channel, and verify delivery with one short setup flow.
Quickstart
Three steps to a live route
1
Create a workspace
Choose a clear name for the product or environment sending events.
2
Connect a channel
Authorize WhatsApp, Discord, Telegram, Slack, Teams, or email.
3
Send a test
Use the dashboard or preview API request to verify the entire route.
send-notification.ts
const response = await fetch(
"https://api.notifire.example/v1/notifications",
{
method: "POST",
headers: {
"Authorization": "Bearer nf_demo_••••••",
"Content-Type": "application/json"
},
body: JSON.stringify({
title: "Deployment complete",
channels: ["slack", "whatsapp"]
})
}
);Example addresses use the reserved .example domain. This documentation is a product preview and does not call a live API.
Next: authenticate an API requestAPI preview