Retrieves interval data for a specific widget NOTE: Does not support global dashboard filtering with Topmost Place, Place Group API filters.
Request Headers
| Header | Value | Required | Description |
|---|---|---|---|
| ECI-ApiKey | string | Yes | Your API key. See Authentication. |
| Content-Type | application/json | Yes | All requests must specify JSON content type. |
Path Parameters
| Name | Description | Type | Required |
|---|---|---|---|
| specificWidgetId | Specific widget identifier to get the data for | integer (int32) | Required |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
Array of:
Readings
| Property | Description | Type | |||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| channelId | The Id of the Channel | integer (int32) | |||||||||||||||||||||
| readings | Readings+Observation[] | ||||||||||||||||||||||
|
Readings+Observation properties
|
|||||||||||||||||||||||
| rule | 1 = odometer, 2 = trip (to calculate delta) | integer (int32) | |||||||||||||||||||||
| unit | UnitChild | ||||||||||||||||||||||
|
UnitChild properties
|
|||||||||||||||||||||||
Example Response
[
{ "channelId": 1, "readings": [
{ "estimated": false, "note": "string", "observationId": 1, "rawValue": 1.0, "time": "2026-03-30", "value": 1.0
}
], "rule": 1, "unit": { "unitCode": "string", "unitId": 1, "unitInfo": "string"
}
}
]