Hi,
I understand the owners/users of the solar panels, that they want to have control over their own data. They paid for their system! Unfortunately the manufacturers/suppliers of the (micro) inverters do not understand this. Otherwise they should have documented an API, so that programmers can made their own interface to Home Automation systems, such as Domoticz, Home Assistant or OpenHab.
It is pitty, but it is the way it is.
However, what I read so far it looks not too difficult.
The options to use PVOutput as an intermediate station is possible. But again you make use of a party, that is not under your control.
It should be possible without any external party.
I own solar panels, equipped with Enphase IQ7+ micro-inverters. They do not provide a fully equipped API either. They even claim that it is not possible to read the individual power production of each panel. However some posts were available and combining each other made it possible to get the information per panel in Domoticz. See example below.

- Screenshot_solar-panels_roofplan_small.png (118.3 KiB) Viewed 11923 times
If this is your intention, you can follow these steps in order to install a MQTT broker and Node Red, if you have not done so.
1. Install Mosquitto MQTT broker. This can be done on the same device as Domoticz is running.
There are many guidelines on the Internet available.
E.g. See:
https://appcodelabs.com/introduction-to ... spberry-pi
Test your MQTT broker, so that you know that it is working properly. Install also mosquitto-clients.
Test that you can connect with your tool to the Mosquitto broker. Default port is 1883.
Do not forget to secure your broker with at least username/password.
2. Install in Domoticz the MQTT Client Gateway with LAN interface and fill in the required fields
See:

- MQTT Domoticz.png (134.46 KiB) Viewed 11923 times
Check that you can communicate between Domoticz and the MQTT Broker.
Subscribe with any client to domoticz/out and you will see various messages passing.
Install Node Red. This can be done on the same device as Domoticz is running.
I have installed NodeJS and Node-RED according to this guide:
NodeJS:
https://www.instructables.com/id/Instal ... pberry-Pi/
Node-RED:
https://nodered.org/docs/getting-started/installation
A tool, I use, on the desktop is MQTTfx. (See
https://mqttfx.jensd.de/) But there are many others.
Test everything in order to be sure that you can communicate between Domoticz, Mosquitto and Node Red.
Connect the (default) Node Red MQTT in node to domoticz/out and connect a debug node and check that you can see the topics published by Domoticz.
Both the script used for the PV Output solution and the curl points to:
http://api.apsystemsema.com:8073/apsema ... tPowerInfo
If you use this URL in your favorite browser what do you see?
In addition I found the following link:
https://community.openenergymonitor.org ... rters/3491
It might be possible to use that solution "out of the box", but maybe you can use the output of the URL.
Can you publish the output of
http://api.apsystemsema.com:8073/apsema ... tPowerInfo?
Regards