Skip to main content
GET
/
v1
/
devices
List all devices
curl --request GET \
  --url http://0.0.0.0:3000/v1/devices \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "name": "<string>",
    "manufacturer": "<string>",
    "model": "<string>",
    "config_entry_id": 123,
    "user_id": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response

id
number
name
string
manufacturer
string
model
string
config_entry_id
number
user_id
string