• Register

Electrical energy by type

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

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
type string type to be extracted 0..1 Saldo import/export
year string Year to be extracted integer 1..1 2022

Type List

Source is to be chosen as an element of the set [ 'Fonti rinnovabili', 'Fonti tradizionali', 'Saldo import/export' ]

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_type array 0..n "electrical_energy_by_type":[{..}]
.year string integer 1..1 "2022"
.region string 1..1 "Puglia"
.type string 1..1 "Saldo import/export"
.demand_GWh string numebr 1..1 "-16.368,385"

Example

cURL Request

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

Response


{
    "result": {
        "message": "string",
        "status": "string"
    },
    "electrical_energy_by_type": [
        {
          "year": "string",
          "region": "string",
          "type": "string",
          "demand_GWh": "string"
        }
    ]
}