Solariance-API-V1
  1. System
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. System

system/list

GET
https://api.solariance.de/v1/system/list

Request

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/system/list' \
--header 'Authorization: Bearer eyxxxx'

Responses

🟢200Success
application/json
Body

Example
{
    "code": 200,
    "message": "List all systems for user_id xxxx",
    "data": {
        "user_id": "xxxx",
        "systems": [
            {
                "system_id": "PVXXX1",
                "name": "Example PV System Berlin",
                "city": "Berlin",
                "country": "Germany",
                "year": 2023,
                "kWp": 20,
                "latitude": 52.52,
                "longitude": 13.38
            },
            {
                "system_id": "PVXXX2",
                "name": "Example PV System Munich",
                "city": "München",
                "country": "Germany",
                "year": 2023,
                "kWp": 20,
                "latitude": 48.13,
                "longitude": 11.58
            },
            {
                "system_id": "PVXXX3",
                "name": "Example PV System Amsterdam",
                "city": "Amsterdam",
                "country": "Netherlands",
                "year": 2023,
                "kWp": 20,
                "latitude": 12.5,
                "longitude": 4.89
            }
        ]
    }
}
🟠401Unauthorized
🟠405Method not allowed
Modified at 2025-09-10 09:16:23
Previous
forecast/optimizer
Next
system/view
Built with