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)"
}
}Retrieve a mapping of device IDs to device names for devices in the organization. Returns a paginated list with device IDs as keys and device names as values.
This endpoint is useful for quickly getting device names without the full device details returned by other endpoints.
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.
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.
144
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.
50
102544
Device ID to name mapping
Maximum number of results requested
Actual number of results returned
Whether there are more results available
ID of the last device in this response
Pagination links (only present when continues is true)
Show child attributes
Object with device IDs as keys and device names as values
Show child attributes
Was this page helpful?