opensensemap.sensors_latest
mock data$0.001 / callOpenSenseMap Latest Sensor Readings
Get the latest measurement value for every sensor on an OpenSenseMap station in a single call. Returns all sensor readings simultaneously: temperature, humidity, pressure, PM2.5, PM10, UV, CO₂, and any other sensors installed on the station. Each reading includes sensor ID, title, unit, sensor type, current value, and timestamp of measurement. Sensors with no recent data show last_value: null. Use box_search or box_detail to find the box_id first, then use sensor IDs from results with sensor_timeseries for historical data. Ideal for real-time environmental monitoring dashboards. Source: OpenSenseMap, PDDL 1.0 public domain.
Input schema
OpenSenseMap station (box) ID — the 24-character MongoDB ObjectId from box_search results. Returns the latest measurement value for every sensor on this station.
Call via REST
curl -X POST https://unifyapi.pro/api/call/opensensemap.sensors_latest \
-H "Authorization: Bearer uak_live_..." \
-H "Content-Type: application/json" \
-d '{"box_id":"<box_id>"}'