Learn how to integrate with our alerting system
All API requests require an API key for authentication. You can generate API keys in thesection.
Authorization: Bearer YOUR_API_KEY
You can send alerts to our system using a simple POST request to our API endpoint.
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"
}'
Explore our API endpoints and learn how to use them.
We provide official SDKs for popular programming languages to make integration easier.
Official Node.js SDK for AlertNow.
Official Python SDK for AlertNow.
Official Go SDK for AlertNow.