Visualization & Query Visualize your data with ZED Hub You can visualize your telemetry from the Telemetry panel. From the interface, you can filter telemetry by date, labels, or devices to target some specific telemetry for analysis. Query your data with REST requests With the REST API, you can also query your telemetry to retrieve them in your own applications. curl -s \ -H "Content-Type:application/json" \ -H "Authorization:Bearer ${access_token}" \ https://hub.stereolabs.com/api/v1/workspaces/:workspaceId/telemetry \ -G \ -d 'labels=robot' \ -d 'fields=timestamp,payload.temperature' \ -d 'start=1580201472695' \ -d 'filter_field=payload.temperature' \ -d 'filter_op=gt' \ -d 'filter_value=30' For more information, please refer to the REST API.