[GET] https://api.terna.it/adequacy/v1.0/detail-available-capacity 
 
    This is the actual hourly value, i.e., the final value for the day [sysdate-7], of the
            available generating capacity related to each of the 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 | 
            
                | detail_capacity_available | 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 | 
            
                | .unit_code | string |  |  | 0..1 | UP_ALTOMONTE_1 | 
            
                | .available_capacity_MW | string |  |  | 0..1 | 161.74 | 
        
    
 
    
        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/detail-available-capacity?dateFrom=25/04/2023&dateTo=25/04/2023' --header 'Authorization: <token>'
 
    
Response
    
        {
            "result": {
              "code": "string",
              "message": "string",
              "status": "string"
            },
            "detail_available_capacity": [
              {
                "market_date": "string",
                "offset": "string",
                "date_tz": "string",
                "unit_code": "string",
                "available_capacity_MW": "string"
              }
            ]
          }