Skip to content

Individual Device Information

Route

GET /api/public/v0/devices/:deviceId

Path Parameters

ParameterTypeRequiredDescription
deviceIdstringYesThe unique identifier (DevEUI) of the device.

Response

Contains information about a single device, including its DevEUI, display name, latitude, and longitude. It does not include any sensor data.

Schema

{
id: string;
name: string;
latitude: number;
longitude: number;
}

Example

{
"id": "0123456789ABCDEF",
"name": "Example Device",
"latitude": 37.7749,
"longitude": -122.4194
}

Response Codes

CodeDescription
500Something went wrong: Internal server error
400No device id provided or device not found