Replay historical network telemetry on a 3D globe. Watch how a machine-learning model scored outage risk over time, and see where outages were actually recorded.
These are the requests the globe already uses, plus one live score.
The reply is { "probability": 12.34, "is_outage_predicted": false }
β probability is 0 to 100, and the flag turns true above 80.
If the model file is missing the API returns 503. Public use is capped at
30 predictions and 60 historical reads per visitor per minute.
curl -s "https://noisyatom.com/api/v1/health"
curl -s "https://noisyatom.com/api/v1/dates"
curl -s "https://noisyatom.com/api/v1/nodes"
curl -s "https://noisyatom.com/api/v1/predictions?date=2026-01-06"
curl -s "https://noisyatom.com/api/v1/predictions/mss-900103541927-900104806142-uEdgevr/timeline?date=2026-01-06" curl -s -X POST "https://noisyatom.com/api/v1/predict" \
-H "Content-Type: application/json" \
-d '{
"delayAvg": 45.2,
"packetsLost": 0.1,
"delayMax": 120.0,
"jitterAvg": 2.1,
"jitterMax": 8.5,
"availabilityPct": 99.9
}'