[GET] https://api.terna.it/adequacy/v1.0/aggregate-effective-available-capacity 
 
    This is the actual hourly value, i.e., the final value for the day [sysdate-1], of
            the available generating capacity related to the set of generating units with a capacity of not less
            than 100 MW
 
    
Authorization OAuth
            2.0
    
Request Header
    
        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 | 
            
                | aggregate_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 | 
            
                | .plant_type | string |  |  | 0..1 | IDROELETTRICO | 
            
                | .prevailing_fuel | string |  |  | 0..1 | ALTRO | 
            
                | .available_capacity_MW | string |  |  | 0..1 | 207.03 | 
        
    
 
    
        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 --location --request GET 'https://api.terna.it/adequacy/v1.0/aggregate-effective-available-capacity?dateFrom=25/04/2023&dateTo=25/04/2023' --header 'Authorization: <token>'
 
    
Response
    
        {
            "result": {
              "code": "string",
              "message": "string",
              "status": "string"
            },
            "aggregate_available_capacity": [
              {
                "market_date": "string",
                "offset": "string",
                "date_tz": "string",
                "macroarea": "string",
                "plant_type": "string",
                "prevailing_fuel": "string",
                "available_capacity_MW": "string"
              }
            ]
        }