Browse Docs

C# / .NET Alerts SDK

The API Alerts .NET SDK sends alerts from your C# or .NET code through API Alerts. Drop it into ASP.NET applications, Blazor apps, Azure Functions, console applications, or any .NET codebase that needs to notify you when something important happens. Minimal setup, fire-and-forget by default with optional response handling, and zero infrastructure.

Installation

dotnet add package ApiAlerts

Usage

using ApiAlerts;

var client = new ApiAlertsClient("YOUR-API-KEY");

// Simple notification
await client.Send(message: "Deployment successful");

// With all options
await client.Send(
    message: "New user signed up",
    channel: "developers",
    link: "https://dashboard.example.com/users/123",
    tags: new[] { "signup", "organic" }
);

Resources