API & SDK Documentation

Learn how to integrate with our alerting system

Getting Started
Learn how to send alerts to our system using our API or SDKs

Authentication

All API requests require an API key for authentication. You can generate API keys in thesection.

API Key Authentication

Authorization: Bearer YOUR_API_KEY

Sending Alerts

You can send alerts to our system using a simple POST request to our API endpoint.

cURL Example

curl -X POST https://api.AlertNow.example/v1/alerts \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Database connection failed",
    "description": "Unable to connect to the primary database",
    "service": "Payment Service",
    "severity": "Critical"
  }'

API Reference

Explore our API endpoints and learn how to use them.

SDKs

We provide official SDKs for popular programming languages to make integration easier.

Node.js SDK

Official Node.js SDK for AlertNow.

Python SDK

Official Python SDK for AlertNow.

Go SDK

Official Go SDK for AlertNow.