get
https://api.robinpowered.com/v1.0/locations//devices?include=-1
Get all of a location's devices
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Optional Includes
You can optionally include additional data in the response by using the include query parameter. For this device endpoint, you can include the device's diagnostic status, the space it belongs to, or any combination of the two (e.g., ?include=status,space).
The device status entity is includable with ?include=status:
{
"reported_at": "2026-07-09T17:24:05+0200",
"network_info": {
"network_connection_type": "WIFI",
"wifi_info": {
"ssid": ""
}
},
"power_info": {
"battery_level": 1,
"is_power_source_connected": true
}
}
The status block describes the current hardware state, network connectivity, and power levels of the device. If the device is legacy or has never checked in, this value may be null.
The space entity is includable with ?include=space:
{
"id": 48,
"location_id": 10,
"name": "Conference Room",
"description": "The main conference room",
"capacity": 12,
"type": "conference",
"is_accessible": true
}
When requesting multiple includes, simply separate the values with a comma: ?include=status,space.
