- Previous: Total Load
- Up: Load
- Next: Peak-Valley Load
Market Load
Differenze rispetto alla versione 1.0
- L'endpoint da richiamare è stato modificato.
- Aggiunto campo Offset nel risultato.
- Aggiunto campo Timezone nel risultato.
- La lista di valori bidding zone tra cui scegliere è diventata: ["Centre-North", "Centre-South", "North", "Sardinia", "Sicily", "South", "Calabria", "Italy"]
https://api.terna.it/load/v2.0/market-load?dateFrom=20/02/2020&dateTo=15/03/2020&biddingZone=Calabria&biddingZone=Sicily
Allows you to obtain data representing the Italian demand
trend with
reference to
the so-called 'market perimeter'. This data, including grid losses, represents the energy injected
into
the grid at the exchange points by production units that are part of the electricity market.
The data coincide with those already available in the Download Center section of Transparency, where you can download them manually instead.
Request Header
API field | Type | Description | Format | Card | Example |
Authorization | String | Token | 1..1 | <your access token> | |
businessID | String | Business ID | 0..1 | b57aca2f-41b8-4a6e-a43c-2fc5f8309f94 | |
Accept | String | Definizione Header Accept | 0..1 | Application/Json |
Query Params
API field | Type | Description | Format | Card | Example |
dateFrom | String | Starting date of extraction | dd/mm/yyyy | 1..1 | 15/2/2021 |
dateTo | String | Final date of extraction | dd/mm/yyyy | 1..1 | 15/2/2021 |
biddingZone | String | Bidding zone to be extracted | restricted list | 0..n | South |
Bidding Zone List
biddingZone is to be chosen as an element of the set ['North', 'Centre-North', 'South', 'Centre-South', 'Sardinia', 'Sicily', 'Calabria', 'Italy']
IMPORTANT NOTE: when the value entered does not match one of the expected values, an error will not be returned, but an empty body will be returned.
Response Structure
API field | Type | Description | Format | Card | Example |
result | Obj | Result | 1..1 | "result":{..} | |
.message | String | Specify the status and if successful, report the request | 1..1 | "message": "Operation completed for the following input. Date from: 23/04/2022, date to: 23/04/2022", | |
.status | String | Specify the status and if successful, report the request | 1..1 | "status": "Completed" | |
marketLoad | Obj | Total Load Structure | array | 0..n | |
.date | String | Date | yyyy-mm-dd hh:mm:ss | 1..1 | 2020-02-12 23:00:00 |
.date_tz | String | Time Zone | Continent/City | 1..1 | Europe/Rome |
.date_offset | String | Time Offset | 1..1 | +02:00 | |
.market_load_MW | String | Market Load | 1..1 | 4784.321 | |
.forecast_market_load_MW | String | Forecast Market Load | 1..1 | 4819.485 | |
.bidding_zone | String | Bidding Zone | 1..1 | Centre-South |
Example
cURL Request
curl --location --request GET 'https://api.terna.it/load/v2.0/market-load?dateFrom=20/02/2020&dateTo=15/03/2020&biddingZone=Calabria&biddingZone=Sicily --header 'Authorization: <token>'
Response
{ "result": { "message": "Operation completed for the following input. Date from: 20/02/2020, date to: 15/03/2020, bidding zone: calabria, sicily", "status": "Completed" }, "market_load": [ { "date": "2020-03-15 23:45:00", "date_tz": "Europe/Rome", "date_offset": "+01:00", "market_load_MW": "1577.615", "forecast_market_load_MW": "1568.057", "bidding_zone": "Sicily" }, { "date": "2020-03-15 23:30:00", "date_tz": "Europe/Rome", "date_offset": "+01:00", "market_load_MW": "1616.746", "forecast_market_load_MW": "1615.546", "bidding_zone": "Sicily" } ] }
- Previous: Total Load
- Up: Load
- Next: Peak-Valley Load