Skip to main content
GET
/
devices
/
names
Get device names
curl --request GET \
  --url https://dashboard.hologram.io/api/1/devices/names \
  --header 'Authorization: Basic <encoded-value>'
{
  "success": true,
  "limit": 5,
  "size": 5,
  "continues": true,
  "links": {
    "path": "/api/1/devices/names",
    "base": "dashboard.hologram.io",
    "next": "/api/1/devices/names?orgid=12345&limit=5&startafter=1788351"
  },
  "lastid": 1788351,
  "data": {
    "187798": "Demo Device Alpha (98963)",
    "1624342": "IoT Sensor Beta (11713)",
    "1736532": "Field Tracker Charlie (07575)",
    "1788350": "Industrial Sensor Delta (16105)",
    "1788351": "Remote Monitor Echo (16030)"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.hologram.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key.

You can find your API key on the Hologram Dashboard under Account Settings.

Query Parameters

orgid
integer
Example:

144

limit
integer

Maximum number of items to return in a single request. For endpoints that support pagination, use this with corresponding /pages endpoints to manage large result sets.

Example:

50

startafter
integer
Example:

102544

Response

200 - application/json

Device ID to name mapping

success
boolean
limit
integer

Maximum number of results requested

size
integer

Actual number of results returned

continues
boolean

Whether there are more results available

lastid
integer

ID of the last device in this response

Pagination links (only present when continues is true)

data
object

Object with device IDs as keys and device names as values