No SMTP relays. No DNS setup. No Logins. Anonymous push notifications to multiple devices with a single HTTP POST request.
import requests url = "https://api.alertify.io/send-alert" payload = { "projectId": "your_project_id", "title": "SCADA Warning", "message": "Pump station 4 pressure drop detected." } headers = { "X-User-Id": "your_device_id" } response = requests.post(url, json=payload, headers=headers) print(response.json())
import ( "bytes" "net/http" ) func main() { url := "https://api.alertify.io/send-alert" jsonStr := []byte(`{"projectId":"your_project_id", "title":"SCADA Warning", "message":"Pump station 4..."}`) req, _ := http.NewRequest("POST", url, bytes.NewBuffer(jsonStr)) req.Header.Set("X-User-Id", "your_device_id") req.Header.Set("Content-Type", "application/json") client := &http.Client{} client.Do(req) }
const response = await fetch('https://api.alertify.io/send-alert', { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-User-Id': 'your_device_id' }, body: JSON.stringify({ projectId: 'your_project_id', title: 'SCADA Warning', message: 'Pump station 4 pressure drop detected.' }) });
Perfect for local testing and personal IoT projects.
Download the app to begin.
For heavy data logging and high-frequency alerts.