• Register

Demand coverage by source

[GET] https://api.terna.it/load/v2.0/demand-coverage-by-source

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
source string source type to be extracted 0..1 Geotermoelettrico
year string Year to be extracted integer 1..1 2022

Source List

Source is to be chosen as an element of the set [ 'Bioenergie', 'Eolico', 'Fotovoltaico', 'Geotermoelettrico', 'Idrico rinnovabile', 'Idrico tradizionale', '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"
demand_coverage_by_source array 0..n "demand_coverage_by_source":[{..}]
.year string integer 1..1 "2022"
.region string 1..1 "Abruzzo"
.source string 1..1 "Geotermoelettrico"
.coverage_GWh string numebr 1..1 "0"

Example

cURL Request

curl --location --request GET https://api.terna.it/load/v2.0/demand-coverage-by-source?year=<year>®ion=<region> 
        --header 'Authorization:Bearer <OAuth Token>'
    

Response


{
    "result": {
        "message": "string",
        "status": "string"
    },
    "demand_coverage_by_source": [
        {
          "year": "string",
          "region": "string",
          "source": "string",
          "coverage_GWh": "string"
        }
    ]
}