Get climate events for environmental sensor
curl --request POST \
--url https://api2.rhombussystems.com/api/climate/getClimateEventsForSensor \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"createdAfterMs": 1640991600000,
"createdBeforeMs": 1640995200000,
"limit": 100,
"sensorUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/climate/getClimateEventsForSensor"
payload = {
"createdAfterMs": 1640991600000,
"createdBeforeMs": 1640995200000,
"limit": 100,
"sensorUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
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({
createdAfterMs: 1640991600000,
createdBeforeMs: 1640995200000,
limit: 100,
sensorUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
})
};
fetch('https://api2.rhombussystems.com/api/climate/getClimateEventsForSensor', 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/getClimateEventsForSensor")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"createdAfterMs\": 1640991600000,\n \"createdBeforeMs\": 1640995200000,\n \"limit\": 100,\n \"sensorUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"climateEvents": [
{
"alertActivities": [
"SOUND_LOUD"
],
"baseStationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"batteryPercentage": 123,
"bleDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"bleRssi": 123,
"closeBaseStations": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"co2": 123,
"ethanol": 123,
"heatIndexDegF": 123,
"heatIndexRangeWarning": "HEAT_INDEX_OK",
"humidity": 123,
"iaq": 123,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pm25": 123,
"probeTempC": 123,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"tampered": true,
"temp": 123,
"thcDetected": true,
"thcPercent": 123,
"timestampMs": 123,
"tvoc": 123,
"vapeSmokeDetected": true,
"vapeSmokePercent": 123
}
],
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Climate Webservice
Get climate events for environmental sensor
Get list of climate events for environmental sensor
POST
/
api
/
climate
/
getClimateEventsForSensor
Get climate events for environmental sensor
curl --request POST \
--url https://api2.rhombussystems.com/api/climate/getClimateEventsForSensor \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"createdAfterMs": 1640991600000,
"createdBeforeMs": 1640995200000,
"limit": 100,
"sensorUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/climate/getClimateEventsForSensor"
payload = {
"createdAfterMs": 1640991600000,
"createdBeforeMs": 1640995200000,
"limit": 100,
"sensorUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
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({
createdAfterMs: 1640991600000,
createdBeforeMs: 1640995200000,
limit: 100,
sensorUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
})
};
fetch('https://api2.rhombussystems.com/api/climate/getClimateEventsForSensor', 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/getClimateEventsForSensor")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"createdAfterMs\": 1640991600000,\n \"createdBeforeMs\": 1640995200000,\n \"limit\": 100,\n \"sensorUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"climateEvents": [
{
"alertActivities": [
"SOUND_LOUD"
],
"baseStationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"batteryPercentage": 123,
"bleDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"bleRssi": 123,
"closeBaseStations": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"co2": 123,
"ethanol": 123,
"heatIndexDegF": 123,
"heatIndexRangeWarning": "HEAT_INDEX_OK",
"humidity": 123,
"iaq": 123,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pm25": 123,
"probeTempC": 123,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"tampered": true,
"temp": 123,
"thcDetected": true,
"thcPercent": 123,
"timestampMs": 123,
"tvoc": 123,
"vapeSmokeDetected": true,
"vapeSmokePercent": 123
}
],
"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 climate events for an environmental sensor.
Timestamp in milliseconds after which events should be retrieved
Example:
1640991600000
Timestamp in milliseconds before which events should be retrieved
Example:
1640995200000
Maximum number of events to return
Example:
100
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Last modified on September 6, 2026