v1

latestOpenAPI 3.0.42026-07-233182951.4 MB
Generation Forecast

History of the fourteen-day generation capacity forecast (FOU2T14D)

This endpoint provides the latest fourteen-day generation forecast from a given DateTime

get/forecast/availability/daily/history

Query parameters

publishTimestring date-time required
Example:2024-06-07T15:00:00Z

The UTC publish time to query. This should be in the format yyyy-MM-ddT:HH:mm:ssZ.

level'total' | 'fuelType' | 'bmUnit'
Example:fuelType

The filter level for the forecast. This can be one of the following:

  • total: the total forecast for the given time period.
  • bmUnit: the forecast for each specified BM unit.
  • fuelType: the forecast aggregated, and optionally filtered by fuel type.
bmUnitstring[]

The BM units to query. Add each unit separately. Either the Elexon ID (Eg: T_CARR-1) or National Grid ID (Eg: CARR-1) can be used. Between 1 and 10 units should be queried when using the bmUnit level.

fuelTypestring[]

The fuel type to query when using the fuelType level. Add each fuel type separately. If no fuel types are supplied, all fuel types will be returned.

[
  "CCGT"
]
format'json' | 'xml' | 'csv'

Response data format. Use json/xml to include metadata.

Response

OK

Example response

{
  "data": [
    {
      "publishTime": "2024-06-07T15:00:00Z",
      "fuelType": "CCGT",
      "ngcBmUnit": "CARR-1",
      "bmUnit": "T_CARR-1",
      "outputUsable": 418,
      "forecastDate": "2024-06-07"
    }
  ],
  "metadata": {
    "datasets": [
      "DATASET"
    ]
  }
}