nexalwarenexalwaredocs
API ReferenceDevice control

Read a device's telemetry history

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

Time-series readings this device has reported what an AI agent needs to learn patterns rather than only react to the latest value.

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

Query Parameters

metric?string
limit?integer
Range1 <= value <= 1000
Default100
since?integer|null

Response Body

application/json

application/json

application/json

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