EnergySite

Method: GET
URL: https://service.solaranywhere.com/api/v2/EnergySites/ENERGY_SITE_ID

With an EnergySiteId, you can access details about the energy site by sending an HTTP GET request to the above URL. It contains a Location element and a PvSystems element. To obtain an EnergySiteId, create an energy site.

{
    "RequestId": "RR27R6XFQ",
    "EnergySite": {
        "Name": "Sample Site - El Paso",
        "Description": "Basic fixed tilt utility-scale PV system",
        "Location": {
            "Latitude": 31.775000,
            "Longitude": -106.48500000
        },
        "PvSystems": [
            {
                "GeneralDerate_Percent": 86.00,
                "Inverters": [
                    {
                        "Count": 12,
                        "MaxPowerOutputAC_kW": 4166.7,
                        "EfficiencyRating_Percent": 97.000000
                    }
                ],
                "PvArrays": [
                    {
                        "PvModules": [
                            {
                                "Count": 165000,
                                "NameplateDCRating_kW": 0.33,
                                "PtcRating_kW": 0.3054,
                                "PowerTemperatureCoefficient_PercentPerDegreeC": 0.400,
                                "NominalOperatingCellTemperature_DegreesC": 45
                            }
                        ],
                        "ArrayConfiguration": {
                            "Azimuth_Degrees": 180.000,
                            "Tilt_Degrees": 25.00,
                            "Tracking": "Fixed",
                            "TrackingRotationLimit_Degrees": 90,
                            "ModuleRowCount": 25,
                            "RelativeRowSpacing": 3
                        },
                        "SolarObstructions": [],
                        "MonthlyShadings": []
                    }
                ]
            }
        ]
    }
}
<EnergySiteGetResponse RequestId="20Z44BL2C" xmlns="http://service.solaranywhere.com/api/v2">
<EnergySite Name="Sample Site" Description="Sample Site"> 
   <Location Latitude="34.65" Longitude="-119.10" /> 
   <PvSystems> 
     <Inverters> 
      <Inverter Count="1" MaxPowerOutputAC_kW="4.470000" EfficiencyRating_Percent="97.000000" /> 
     </Inverters> 
     <PvArrays> 
      <PvArray> 
       <PvModules> 
        <PvModule Count="20" NameplateDCRating_kW="0.22000" PtcRating_kW="0.19760" 
        PowerTemperatureCoefficient_PercentPerDegreeC="0.4" NominalOperatingCellTemperature_DegreesC="45" /> 
       </PvModules> 
       <ArrayConfiguration Azimuth_Degrees="177.000" Tilt_Degrees="25.000" Tracking="Fixed" TrackingRotationLimit_Degrees="90" /> 
       <SolarObstructions> 
        <SolarObstruction Opacity_Percent="80.0" Azimuth_Degrees="90.000" Elevation_Degrees="33.000" /> 
        <SolarObstruction Opacity_Percent="100" Azimuth_Degrees="120.000" Elevation_Degrees="50.000" /> 
        <SolarObstruction Opacity_Percent="100" Azimuth_Degrees="150.000" Elevation_Degrees="22.000" /> 
        <SolarObstruction Opacity_Percent="100" Azimuth_Degrees="180.000" Elevation_Degrees="3.000" /> 
        <SolarObstruction Opacity_Percent="100" Azimuth_Degrees="210.000" Elevation_Degrees="1.000" /> 
        <SolarObstruction Opacity_Percent="100" Azimuth_Degrees="240.000" Elevation_Degrees="2.000" /> 
        <SolarObstruction Opacity_Percent="70.0" Azimuth_Degrees="270.000" Elevation_Degrees="4.000" /> 
       </SolarObstructions> 
      </PvArray> 
     </PvArrays> 
    </PvSystem> 
   </PvSystems> 
  </EnergySite> 
</EnergySiteGetResponse>