ClimateSafe

Dashboard
Carbon Monoxide
Humidity
LPG
Gas Smoke
Temperature
Combustible Gas
Live Data
Raw Data
Developers

ClimateSafe

ClimateSafe Developers.

Our does our API work?

Using our API is easy. Using any language, make an HTTP request to our server at any of the endpoints below and receive your response in JSON format! In order for us to continue providing this service, please do not make spam or unnecessarily large numbers of requests to any API endpoint.

Get All Data Points

Retrive all raw, unprocessed data points from our database. No parameters required :)

GET/api/get-all-data
const resp = await fetch("/api/get-all-data"); const data = await resp.json();

Get Average of All Data Points

Retrive a summary of the averages of all data points

GET/api/averages
const resp = await fetch("/api/averages"); const data = await resp.json();