Export position history
Export a tag's position history for analysis, compliance reporting, or integration with external tools.
Prerequisites
- A Blecon Track workspace with tags that have recorded position data
Option 1: Export from the dashboard
- In Blecon Track, open an asset's detail page.
- Scroll to Position & Sensor Data.
- Set the date range for the data you want to export.
- Click Export… and choose your format (CSV or JSON).
What the export contains
| Column | Description |
|---|---|
time |
Timestamp of the position sample (ISO 8601, UTC) |
device_id |
The tag's device ID |
lat, lon |
Position coordinates |
accuracy_m |
Estimated accuracy of the position, in meters |
zone, zone_id |
Zones the tag was in at the time (comma-separated when in more than one) |
temperature_c, humidity_pct, battery_mv |
Sensor readings reported with the sample |
The sensor columns are filled only for tags whose hardware reports that reading. A tag without a humidity sensor, for example, exports an empty humidity_pct column by design; the rest of the row is unaffected. Untick Include sensor data in the export dialog to leave these columns out entirely.
Option 2: Export via the API
Query the position history endpoint to retrieve positions for a specific tag and time range:
GET /tracker/api/workspaces/{workspace_id}/assets/{asset_id}/position-history?from=2026-01-01T00:00:00Z&to=2026-01-31T23:59:59Z
The response includes coordinates, timestamps, zones, and accuracy metadata for each position. See the API reference for full request/response details.