Skip to content
Nowlert
Start here

Send your first notification

Connect a service, choose a channel, and verify delivery with one short setup flow.

Connect a source

Create an integration and receive your first event.

Open guide

Configure a webhook

Forward events from any HTTP-capable service.

Open guide

Authenticate

Use scoped API keys to send from your application.

Open guide

Explore the API

Preview requests, responses, and delivery status.

Open guide

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.nowlert.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