• Register

Electrical energy by Sector

[GET] https://api.terna.it/load/v2.0/electrical-energy-by-sector

Authorization  OAuth 2.0

Request Header

API field Type Description Format Card Example
businessID string 0..1
Authorization string OAuth Token 1..1 Bearer   <token>
Accept string 0..1 Application/Json

Query Params

API field Type Description Format Card Example
region string Region to be extracted 0..1 Abruzzo
province string Provinces to be extracted 0..n Chieti
sector string Sector to be extracted 0..1 Agricoltura
year string Year to be extracted integer 1..1 2010

Sector List

Sector is to be chosen as an element of the set [ 'Agricoltura', 'Domestico', 'Industria', 'Servizi']

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 200

API field Type Description Format Card Example
result Obj Result
1..1 "result":{..}
.message string
 1..1 "OK"
.status string
 1..1 "Completed"
electrical_energy_by_sector array 0..n "electrical_energy_by_sector":[{..}]
.year string integer 1..1 "2010"
.region string 1..1 "Abruzzo"
.province string 1..1 "Chieti"
.sector string 1..1 "Agricoltura"
.consumption_GWh string number 1..1 "22,606"

Example

cURL Request

curl --location --request GET https://api.terna.it/load/v2.0/electrical-energy-by-sector?year=<year>®ion=<region>&province=<province> 
        --header 'Authorization:Bearer <OAuth Token>'
    

Response


{
    "result": {
        "message": "string",
        "status": "string"
    },
    "electrical_energy_by_sector": [
        {
            "year": "string",
            "region": "string",
            "province": "string",
            "sector": "string",
            "consumption_GWh": "string"
        }
    ]
}