v1
latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KBRequest map information.
This endpoint enables you to retrieve the present and previous locations of trackers. It will provide the data utilized by the embedded map. The autoRefresh duration is a parameter utilized for the map view. It is not significant for your application. It's not recommended to regularly fetch the current position, both to save resources and avoid hitting API rate limits.
Query parameters
Show the trackpoints from this date. This Parameter is optional.
Filters the vehicles based on the IDs.
Filters the vehicles based on the license plates.
Filters the vehicles based on the customer-specific IDs.
Filters the vehicles based on the VINs.
Filters the vehicles based on the external vehicle IDs.
Name of the external data source. (Default is "*API")
This parameter is only required if the external vehicle ID is filtered.
Filter the vehicles on their name.
Filter the vehicles on their driver.
Show events. This Parameter is optional.
| Value | Description |
|---|---|
| STOP | Stop |
Response
Success Response:
Example response
{
"trackers": [
{
"latLng": [
52.38127828631681,
7.594243214018696
],
"latLngBounds": {
"minLatLng": [
52.38127828631681,
7.594243214018696
],
"maxLatLng": [
52.38127828631681,
7.594243214018696
]
}
}
],
"trackPoints": [
{
"data": [
{
"time": "2015-02-20T12:59:21+01:00",
"latLng": [
52.38127828631681,
7.594243214018696
]
}
]
}
],
"events": [
{
"data": [
{
"startTime": "2015-02-20T12:59:21+01:00",
"startLatLng": [
52.38127828631681,
7.594243214018696
],
"endTime": "2015-02-20T12:59:21+01:00",
"endLatLng": [
52.38127828631681,
7.594243214018696
]
}
]
}
]
}