API
Sign in
Monitor Everything
In a Single App
Put your projects' key values under control from a single dashboard. Receive push notifications to your devices when something goes wrong.
Learn more Create a FREE account
Send numeric values to API and widget them to your dashboard
curl -H "Content-type: application/json; charset=utf-8" \
-X POST \
-d '{
"apiKey" : "820f0efadb89218dfd2b2bc7922142e1",
"projectName" : "My Project",
"parameterName" : "Frontend #1 LA",
"parameterType" : "numeric",
"parameterValue" : 75.4
}' \
https://alertsboard.app/api/sendValue
                        
Or send them as text
curl -H "Content-type: application/json; charset=utf-8" \
-X POST \
-d '{
"apiKey" : "820f0efadb89218dfd2b2bc7922142e1",
"projectName" : "My Project",
"parameterName" : "Frontend #1 Status",
"parameterType" : "string",
"parameterValue" : "Online",
"isAlert": false
}' \
https://alertsboard.app/api/sendValue
                        
Set alert flag via API
curl -H "Content-type: application/json; charset=utf-8" \
-X POST \
-d '{
"apiKey" : "820f0efadb89218dfd2b2bc7922142e1",
"projectName" : "My Project",
"parameterName" : "Frontend #1 Status",
"parameterType" : "string",
"parameterValue" : "Offline",
"isAlert": true
}' \
https://alertsboard.app/api/sendValue
                        
Receive Push Notifications
across your devices
BONUS: push important event messages to your device
curl -H "Content-type: application/json; charset=utf-8" \
-X POST \
-d '{
"apiKey" : "820f0efadb89218dfd2b2bc7922142e1",
"projectName" : "My project",
"text" : "You have 1 new ticket message from VIP customer",
"isAlert": true,
"requiresAcknowledge" : true
}' \
https://alertsboard.app/api/sendEvent
                        
Register to get started
Register
    Copyright © 2020
Terms of Service Privacy Policy Contacts