Direct link to the dashboard

You can use a direct link to your system with the following URL as example (replace the example data)

https://dashboard.justnimbus.com/user/view.php?system=JNxxxxx&zip=1234AB

Mobile devices

Some mobile device users may experience some issues with logging in trough the form, if you have such issues, you could place the above direct URL (replace example contents) and place a shortcut on the homescreen of your device.


Dashboard API

We have integrated API calls trough HTTP GET requests to retrieve your installation status and data.

To invoke CSV output you can add &output=csv behind the GET call, like:

https://dashboard.justnimbus.com/user/view.php?system=JNxxxxx&zip=1234AB&output=csv

it will generate a CSV output (with ; seperator), and will in some browsers download the file, the contents are like:

api_version;3
system_last_update;2023-09-12 19:35
system_lat;52.3181
system_lon;5.02533
system_status;Pompdruk te laag!
system_flow;3.1.7
system_ip;192.168.2.24
reservoir_capacity;4500
reservoir_content;192
reservoir_temp;25.12
pump_type;Membraan
pump_pressure;0.1
water_saved;446
water_used;0
api_weather;1
rain_36h;1.3

To invoke JSON output you can add &output=json behind the GET call, like:

https://dashboard.justnimbus.com/user/view.php?system=JNxxxxx&zip=1234AB&output=json

it will generate a JSON output (with starting and ending brackets) like:

[
    {
        "api_version": "3",
        "system_last_update": "2023-09-14 13:31",
        "system_lat": "52.3181",
        "system_lon": "5.02533",
        "system_status": "System just right!",
        "system_flow": "3.1.9",
        "system_ip": "192.168.1.1",
        "reservoir_capacity": "192",
        "reservoir_content": "192",
        "reservoir_temp": "24.25",
        "pump_type": "Membraan",
        "pump_pressure": "0.0",
        "water_saved": "528",
        "water_used": "623",
        "water_added": "96",
        "api_weather": "1",
        "rain_36h": "1.3"
    }
]

To invoke XML output you can add &output=xml behind the GET call, like:

https://dashboard.justnimbus.com/user/view.php?system=JNxxxxx&zip=1234AB&output=xml

it will generate a XML output (with “data” as root) like:

<data>
<api_version>3</api_version>
<system_last_update>2023-09-12 19:35</system_last_update>
<system_status>Pompdruk te laag!</system_status>
<system_lat>52.3181</system_lat>
<system_lon>5.02533</system_lon>
<system_flow>3.1.7</system_flow>
<system_ip>192.168.2.24</system_ip>
<reservoir_capacity>4500</reservoir_capacity>
<reservoir_content>192</reservoir_content>
<reservoir_temp>25.12</reservoir_temp>
<pump_type>Membraan</pump_type>
<pump_pressure>0.1</pump_pressure>
<water_saved>446</water_saved>
<water_used>0</water_used>
<api_weather>1</api_weather>
<rain_36h>1.3</rain_36h>
</data>

Changelog API

API V3
– Added API weather flag.
– Added weather api 36H rainfall prediction.

API v2:
– Added Latitude and Longitude to output.
– Added internal IP to output.