to retrieve the complete history for a specific anomaly alert

GET https://boomi.eyer.ai/api/v2/anomalies/{id}

This api will return the complete history of the selected anomaly alert without metric details. Alerts with history will be stored for 7 days after they were triggered, then they will be removed.

Authentication: use “Authorization” in your HTTP header with your query key.

Example response

[
  {
    "severity": "severe",
    "severity_num": 3,
    "nodes_affected": 1,
    "metrics_affected": 16,
    "event_type": "updated",
    "event_occured": "2025-03-10T14:32:00Z",
    "update_id": "67ceffadd49367b7ae524a10",
    "id": "67ce354dd49367b7ae51bf72",
    "learning_status": 0
  },
  {
    "severity": "medium",
    "severity_num": 2,
    "nodes_affected": 1,
    "metrics_affected": 15,
    "event_type": "updated",
    "event_occured": "2025-03-10T14:32:00Z",
    "update_id": "67ceffadd49367b7ae524a0f",
    "id": "67ce354dd49367b7ae51bf72",
    "learning_status": 0
  }
]