← Estonia

Power Outage Events

GET /estonian-power/outages/events

Lifecycle view of Elektrilevi outages: one row per distinct outage, with first_seen_at, last_seen_at, resolved_at, duration_seconds, and peak customers affected. Filter by ?status=active|resolved and ?start/?end. Useful for MTTR analytics, incident counts by cause, and studying how fast the grid recovers from storms and faults.

Parameters

status optional

active or resolved

start optional

Start datetime (first_seen_at)

end optional

End datetime (first_seen_at)

limit optional default: 500

Max rows (cap 10000)

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/estonian-power/outages/events?status=resolved&limit=100"

Live Response

{
  "count": 2,
  "data": [
    {
      "customers_affected": 181,
      "duration_seconds": 0,
      "estimate_description": "hetkel teadmata",
      "estimated_end": null,
      "first_seen_at": "2026-07-05T15:45:01Z",
      "last_seen_at": "2026-07-05T15:45:01Z",
      "max_customers_affected": 181,
      "outage_id": "1046758",
      "planned_end": null,
      "planned_start": null,
      "reason": null,
      "resolved_at": "2026-07-05T15:45:01Z",
      "start_time": "2026-07-05T15:43:48Z",
      "type": "unplanned"
    },
    {
      "customers_affected": 28,
      "duration_seconds": 1200,
      "estimate_description": "hetkel teadmata",
      "estimated_end": null,
      "first_seen_at": "2026-07-05T15:05:01Z",
      "last_seen_at": "2026-07-05T15:25:01Z",
      "max_customers_affected": 28,
      "outage_id": "1046750",
      "planned_end": null,
      "planned_start": null,
      "reason": null,
      "resolved_at": "2026-07-05T15:25:01Z",
      "start_time": "2026-07-05T13:17:07Z",
      "type": "unplanned"
    }
  ],
  "success": true
}