nexalwarenexalwaredocs
API ReferenceDevice control

Read the most recent value per telemetry metric

GET
/api/v1/devices/{deviceId}/telemetry/latest

The quickest "current state" snapshot - one row per metric this device has ever reported, plus its relay state.

Authorization

X-Api-Key<token>

A secret API key created on the dashboard (Settings → API Keys). By itself it grants nothing - it must also have a DeviceGrant scoping it to the specific device(s) and command(s) it may call.

In: header

Path Parameters

deviceId*string

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/devices/dev_a1b2c3/telemetry/latest"
{  "state": null,  "relayState": true,  "telemetry": [    {      "metric": "string",      "value": 0,      "recordedAt": "2019-08-24T14:15:22Z"    }  ]}