For the complete documentation index, see llms.txt. This page is also available as Markdown.

Timeseries

Get timeseries data

post

Returns paginated timeseries data for one or more variables of the same machine in a tabular structure, where the first column always represents the timestamp of a row and the following columns hold the variables' data for the given timestamp: e.g. [time, variable_uuid_1, variable_uuid_2, variable_uuid_3].

Note: The sequence of variables from the request is preserved in the response:

A request for ?variables=A,B will yield response data with columns [time, A, B], whereas ?variables=B,A will yield response data with columns [time, B, A].

Authorizations
AuthorizationstringRequired
Body
machinestringRequired

A UUID for a machine

startstring · date-timeRequired

Datetime with timezone in ISO Format e.g. '2000-01-01T09:04:41.783348+00:00'

endstring · date-timeRequired

Datetime with timezone in ISO Format e.g. '2000-01-02T09:04:41.783348+00:00'

resampling_intervalinteger · min: 10 · max: 604800 · nullableOptional
cursorstringOptional
Responses
200

Successful Response

application/json
post/v2/timeseries

Last updated