/locations/:id/devices

Get all of a location's devices

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

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.

Path Params
int32
required

The ID of the location

include
array of strings
required

Include specific models for each space (e.g. calendar)

include*
Query Params
int32
Defaults to 1

The page of the result

int32
Defaults to 10

How many results are returned per page

Response

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json