• Register

Expected Available Capacity

[GET] https://api.terna.it/adequacy/v1.0/expected-available-capacity 
This is the aggregate hourly expected value, taking into account scheduled maintenance and unavailability, of the available production capacity relating to production units with a power of not less than 100 MW

Authorization OAuth 2.0

Request Header

API field Type Description Format Card Example
businessID String Business ID 0..1 b57aca2f-41b8-4a6e-a43c-2fc5f8309f94
Authorization String Token 1..1   <token>
Accept String 0..1 Application/Json

Query Params

API field Type Description Format Card Example
dateFrom string Format dd/mm/yyyy 1..1
dateTo string Format dd/mm/yyyy 1..1

Response Structure 200

API field Type Description Format Card Example
result 0..1
.messagge string 0..1 OK
.status string 0..1 Completed
expected_available_capacity array 0..n
.market_date string 0..1 2023-04-25 23:00:00
.offset string 0..1 +01:00
.date_tz string 0..1 Europe/Rome
.macroarea string 0..1 SUD_ISOLE
.macrouser_name string 0..1 A2A
.plant_type string 0..1 IDROELETTRICO
.prevailing_fuel string 0..1 TERMICO TRADIZIONALE
.available_capacity_MW string 0..1 32.99

Response Structure 406

API field Type Description Format Card Example
result 0..1
.messagge string 0..1 Input Validation Error: the value entered is incorrect or does not conform to the expected format. Value entered: 200
.status string 0..1 ERROR

Response Structure 500

API field Type Description Format Card Example
result 0..1
.messagge string 0..1 Information retrieval error
.status string 0..1 ERROR

Example

cURL Request

curl --location --request GET 'https://api.terna.it/adequacy/v1.0/expected-available-capacity?dateFrom=25/04/2023&dateTo=25/04/2023' --header 'Authorization: <token>'

Response

        {
            "result": {
              "code": "string",
              "message": "string",
              "status": "string"
            },
            "expected_available_capacity": [
              {
                "market_date": "string",
                "offset": "string",
                "date_tz": "string",
                "macroarea": "string",
                "macrouser_name": "string",
                "plant_type": "string",
                "prevailing_fuel": "string",
                "available_capacity_MW": "string"
              }
            ]
          }