v1

latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KB
Tracking|Vehicle Map Embedding

Request 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.

get/map/fetch

Query parameters

datestring
Example:2022-12-22

Show the trackpoints from this date. This Parameter is optional.

trackers[byIds][]integer[]

Filters the vehicles based on the IDs.

trackers[byLicenseNumbers][]string[]

Filters the vehicles based on the license plates.

trackers[byIdentifiers][]string[]

Filters the vehicles based on the customer-specific IDs.

trackers[byIdentificationNumbers][]string[]

Filters the vehicles based on the VINs.

trackers[byImportKeys][]string[]

Filters the vehicles based on the external vehicle IDs.

trackers[importSource]string

Name of the external data source. (Default is "*API")

This parameter is only required if the external vehicle ID is filtered.

trackers[byName]string

Filter the vehicles on their name.

trackers[byDriver]string

Filter the vehicles on their driver.

eventTypes[]string[]

Show events. This Parameter is optional.

ValueDescription
STOPStop

Response

Success Response:

autoRefreshinteger

The configured refresh interval in seconds.

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
          ]
        }
      ]
    }
  ]
}