I have a Fronius Primo 5.0-1 and a Smart Meter 63A-1
Using cURL I can read the produced energy using this comand :
curl http://fronius/solar_api/v1/GetArchiveData.cgi?Scope=System&StartDate=28.8.2024&EndDate=28.8.2024&SeriesType=DailySum&Channel=EnergyReal_WAC_Sum_Produced
Result is a JSON containing
===
{
“Body” :
{
“Data” :
{
“inverter/1” :
{
“Data” :
{
“EnergyReal_WAC_Sum_Produced” :
{
“Unit” : “Wh”,
“Values” :
{
“0” : 25137.055277777763 <<<<<< energy produced that day *********
},
But when I try to read the “consumed” energy (as displayed in the Android App) with
===
curl http://fronius/solar_api/v1/GetArchiveData.cgi?Scope=System&StartDate=28.8.2024&EndDate=28.8.2024&SeriesType=DailySum&Channel=EnergyReal_WAC_Sum_Consumed
… I receive an empty answer
Using python + requests I get an error indicating “Key error” but I dont know what key is in error.
Any ideas ?