Solariance-API-V1
  1. Forecast
Solariance-API-V1
  • Getting Started
  • Forecast
    • forecast/power
      GET
    • forecast/energy
      GET
    • forecast/temperature
      GET
    • forecast/export
      GET
    • forecast/optimizer
      POST
  • System
    • system/list
      GET
    • system/view
      GET
    • system/create
      POST
    • system/update
      PUT
    • system/delete
      DELETE
  • User
    • user/view
      GET
    • user/create
      POST
    • user/update
      PUT
    • user/delete
      DELETE
    • user/auth/pw
      POST
  • Ext
    • ext/pvgeneration
      GET
    • ext/pvshare
      GET
    • ext/price
      GET
    • ext/pvinstallation
      GET
  1. Forecast

forecast/energy

GET
https://api.solariance.de/v1/forecast/energy
Returns daily energy forecast in [kWh]

Request

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.solariance.de/v1/forecast/energy?system_id=PVXXXX' \
--header 'Authorization: Bearer eyxxxx'

Responses

🟢200Success
application/json
Body

Example
{
    "code": 200,
    "message": "Energy forecasts for system PVXXXX",
    "data": {
        "system_id": "PVXXXX",
        "forecast": [
            {
                "day": "2025-01-29",
                "energy_production": 51.07
            },
            {
                "day": "2025-01-30",
                "energy_production": 24.14
            },
            {
                "day": "2025-01-31",
                "energy_production": 11.38
            },
            {
                "day": "2025-02-01",
                "energy_production": 22.01
            },
            {
                "day": "2025-02-02",
                "energy_production": 33.54
            }
        ]
    }
}
🟠400Bad Request
🟠405Method not Allowed
🟠401Unauthorized
🔴500Server Error
Modified at 2025-09-10 09:15:56
Previous
forecast/power
Next
forecast/temperature
Built with