v1

latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KB
Tracking|GPS record

Fetch GPS record list.

This method can be used to request the GPS records of a single tracker. You need to specify the tracker using the filter options provided. Returned records are unsorted.

The maximum number of records returned is limited to 100,000 entries. If there are more entries, the field complete is set to false in the response. You can then use the lastTrackPointId field in the response to create a new query with the afterTrackPointId parameter to return the subsequent entries.

With the afterTrackPointId parameter, it is also possible to create new records and requests. All you need to do is pass the lastTrackPointId from the older request.

get/track_point/fetch

Query parameters

tracker[byId]integer

Filter the vehicle by the ID.

tracker[byLicenseNumber]string

Filter the vehicle by the license plate.

tracker[byIdentifier]string

Filter the vehicle by the customer specific ID.

tracker[byIdentificationNumber]string

Filter the vehicle by the vehicle identification number.

tracker[byImportKey]string

Filter the vehicle by the external vehicle ID.

tracker[importSource]string

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

This parameter is only required for filtering by the external vehicle ID.

afterTrackPointIdstring

Get the records by the specified record ID. Use the "lastTrackPointId" value from the previous request here.

Response

Success Response:

lastTrackPointIdstring

The ID of the last GPS record. With this ID, newer records can be queried later, when passed as the "afterTrackPointId" parameter.

completeboolean

Are the requested records complete?

For a "false" value, further queries would have to be made with the "afterTrackPointId" parameter, to load all records. The value for the parameter is contained in the lastTrackPointId field.

Example response

{
  "trackPoints": [
    {
      "time": "2015-02-20T12:59:21+01:00",
      "latLng": [
        52.38127828631681,
        7.594243214018696
      ]
    }
  ]
}