×
GET /fetch_live_outages
Fetch real-time power plant outage data from ENTSO-E for European bidding zones.

Parameters

start string Required
Start datetime (format: YYYYMMDDHHMM, CET timezone)
end string Required
End datetime (format: YYYYMMDDHHMM, CET timezone)
bz string Optional
Bidding zone code(s). Comma-separated for multiple zones. If no input, all EU outages fetched by default.

Available Bidding Zones

AT BE BG CH CZ DE_LU DK_1 DK_2 EE ES FI FR GR HR HU IT_CALA IT_CNOR IT_CSUD IT_NORD IT_SARD IT_SICI IT_SUD LT LV NL NO_1 NO_2 NO_3 NO_4 NO_5 PL PT RO RS SE_1 SE_2 SE_3 SE_4 SI SK

Response

Returns a list with JSON arrays of outage objects.

event object
Outage event data (EIC, available_quantity, start, end, outage_type, unavailable_capacity, etc.)
plant object
Plant information if matched in database (Name, Country, lat, lon, Fueltype, Capacity, etc.)

Example Request

curl -X GET "http://44.214.6.8:8000/fetch_live_outages?start=202603010000&end=202603152300&bz=ES"

Example Response

[ { "event": { "created": "2026-03-01T12:00:00", "start": "2026-03-01T00:00:00", "end": "2026-03-15T23:00:00", "unavailable_capacity": 100, "outage_type": "Planned", "outage_reason": "Maintenance" }, "plant": { "EIC": "48WGT0000000001S", "name": "Example Power Plant", "country": "ES", "nominal_capacity": 500, "fueltype": "Gas", "bidding_zone": "ES", "lat": 40.4168, "lon": -3.7038 } } ]