SolarView
Using the API
SolarView has a HTTP api for submitting your own data to the service.
To submit data to the api make a post request to: http://solarview.org/api/push/inverter/{id}
with the following request body:
{
"key": "herethekeyforyourinverter",
"input": [
{"volt": 355, "amp": 3.35},
{"volt": 322, "amp": 2.4}
],
"output": [
{"power": 356},
{"power": 362},
{"power": 339}
],
"daily-power": 6.3,
"temperature": 36.2
}