Get minimal climate state list
curl --request POST \
--url https://api2.rhombussystems.com/api/climate/getMinimalClimateStateList \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '{}'import requests
url = "https://api2.rhombussystems.com/api/climate/getMinimalClimateStateList"
payload = {}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({})
};
fetch('https://api2.rhombussystems.com/api/climate/getMinimalClimateStateList', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/climate/getMinimalClimateStateList")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();{
"climateStates": [
{
"associatedCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"batteryPercent": 85,
"calibrating": false,
"closestBaseStation": "AAAAAAAAAAAAAAAAAAAAAA",
"co2": 450,
"createdAtMillis": 1640995200000,
"ethanol": 5.2,
"firmwareVersion": "1.2.3",
"floorNumber": 2,
"health": "GREEN",
"healthDetails": "FIRMWARE_BEHIND",
"heatIndexDegF": 85.2,
"heatIndexRangeWarning": "HEAT_INDEX_OK",
"humidity": 45.2,
"hwVariation": "RASPBERRY_PI_3",
"iaq": 85.5,
"lastSeenSec": 1640995200,
"latitude": 37.7749,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"longitude": -122.4194,
"name": "Office Climate Sensor",
"pm25": 12.3,
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"probeConnected": true,
"probeTempC": 24.1,
"sensorUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"serialNumber": "ES-123456789",
"signalStrength": 85,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"temperatureCelcius": 23.5,
"thcPercent": 0.8,
"tvoc": 125.5,
"vapePercent": 2.1
}
],
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Climate Webservice
Get minimal climate state list
Get basic state information of all environmental sensors
POST
/
api
/
climate
/
getMinimalClimateStateList
Get minimal climate state list
curl --request POST \
--url https://api2.rhombussystems.com/api/climate/getMinimalClimateStateList \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '{}'import requests
url = "https://api2.rhombussystems.com/api/climate/getMinimalClimateStateList"
payload = {}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({})
};
fetch('https://api2.rhombussystems.com/api/climate/getMinimalClimateStateList', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/climate/getMinimalClimateStateList")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();{
"climateStates": [
{
"associatedCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"batteryPercent": 85,
"calibrating": false,
"closestBaseStation": "AAAAAAAAAAAAAAAAAAAAAA",
"co2": 450,
"createdAtMillis": 1640995200000,
"ethanol": 5.2,
"firmwareVersion": "1.2.3",
"floorNumber": 2,
"health": "GREEN",
"healthDetails": "FIRMWARE_BEHIND",
"heatIndexDegF": 85.2,
"heatIndexRangeWarning": "HEAT_INDEX_OK",
"humidity": 45.2,
"hwVariation": "RASPBERRY_PI_3",
"iaq": 85.5,
"lastSeenSec": 1640995200,
"latitude": 37.7749,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"longitude": -122.4194,
"name": "Office Climate Sensor",
"pm25": 12.3,
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"probeConnected": true,
"probeTempC": 24.1,
"sensorUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"serialNumber": "ES-123456789",
"signalStrength": 85,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"temperatureCelcius": 23.5,
"thcPercent": 0.8,
"tvoc": 125.5,
"vapePercent": 2.1
}
],
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Authorizations
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
Headers
Authentication scheme identifier. Use api-token for standard API key authentication, partner-api-token for partner API key authentication. Must be paired with the x-auth-apikey header containing your API key.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Request to retrieve minimal climate state information for all environmental sensors.
Last modified on September 21, 2026