Hello, I'm trying to collect data from our Fronius photovoltaic inverters
The appliance give the data below calling this url :http://ipadress/solar_api/v1/GetInverterRealtimeData.cgi
I'm trying with restapi V2, but the output seems not a JSONpath standard..
{
"Body" : {
"Data" : {
"DAY_ENERGY" : {
"Unit" : "Wh",
"Values" : {
"1" : null
}
},
"PAC" : {
"Unit" : "W",
"Values" : {
"1" : 14968.05078125
}
},
"TOTAL_ENERGY" : {
"Unit" : "Wh",
"Values" : {
"1" : 507850.88666666666
}
},
"YEAR_ENERGY" : {
"Unit" : "Wh",
"Values" : {
"1" : null
}
}
}
},
"Head" : {
"RequestArguments" : {
"Scope" : "System"
},
"Status" : {
"Code" : 0,
"Reason" : "",
"UserMessage" : ""
},
"Timestamp" : "2023-07-05T15:15:12+00:00"
}
}
Add comment