List telemetry from a tank
GET /v1/tanks/:id/telemetry
Returns a list of telemetries from a tank. The telemetries are returned sorted by creation date, with the most recent telemetries appearing first.
Request
curl -X GET "https://public.api.levixgas.com/v1/tanks/849f32cc-e891-4279-ac41-37fe5b2cce50/telemetry" \
-H "X-API-Key: YYBXbxc.T_x2psVizfd1M3XPIKHEeYYpZkMoH4uJ5LXlicSsV8Y" \
-d size=100
Parameters
No parameters.
More parameters
created_at_gte string optional
ISO for datetime representing the minimum value to filter by (inclusive)
created_at_lte string optional
ISO for datetime representing the maximum value to filter by (inclusive)
page integer optional
Specifies which page of result to retrieve. The default is 1.
size integer optional
This specifies a limit on the number of objects to return, ranging between 1 and 100, and the default is 10.
Returns
A dictionary with a data property that contains an array of up to size telemetry.
Each entry in the array is a separate telemetry object. If no more telemetries are available, the resulting array will be empty.
Response
{
"object":"list",
"data":[
{
"object":"telemetry",
"created_at":"2025-08-13T16:38:55.453Z",
"fill_percentage": 80
}
],
"page":1,
"size":10,
"total_pages":100,
"total_items":1000
}