> For the complete documentation index, see [llms.txt](https://docs-old.telematicssdk.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-old.telematicssdk.com/user-statistics-and-analytics/processed-data/get_track.md).

# Get a single track with waypoints

## Get Track

<mark style="color:blue;">`GET`</mark> `https://mobilesdk.telematicssdk.com/mobilesdk/stage/track/get_track/v1`

Get a single track with detailed data.\
\
**Authorization:** DeviceToken in Header

#### Query Parameters

| Name       | Type   | Description       |
| ---------- | ------ | ----------------- |
| trackToken | string | trackToken (GUID) |
| lang       | string | en by default     |

#### Headers

| Name        | Type   | Description        |
| ----------- | ------ | ------------------ |
| DeviceToken | string | DeviceToken (GUID) |

{% tabs %}
{% tab title="200 " %}

```
{
   "Result": {
     "Track": {
         "StartDate": "2018-06-14T14:53:07+04:00",
         "EndDate": "2018-06-14T14:55:24+04:00",
         "Distance": 3.882,
         "Duration": 2.2833333333333332,
         "AccelerationCount": 0,
         "DecelerationCount": 0,
         "AddressStart": "N De Anza Blvd 10853, Cupertino, Santa Clara, United States",
         "AddressEnd": "Arboretum Dr 5893, Woodland Acres-the Highlands, Los Altos, Santa Clara, United States",
         "Rating": 2,
         "RatingCornering": 0,
         "RatingAcceleration": 5,
         "RatingBraking": 5,
         "RatingSpeeding": 5,
         "RatingPhoneUsage": 5,
         "RatingTimeOfDay": 5,
         "PhoneUsage": 0,
         "MidOverSpeedMileage": 2.391,
         "HighOverSpeedMileage": 0,
         "OriginChanged": false,
         "TrackOriginCode": "OriginalDriver",
         "DrivingTips": "Why you have rating 40 on this trip:\r\n- Your speed was between 125 and 125 km/h while speed limit was 105 km/h from 14:53:57 to 14:53:57\r\n- Your speed was between 121 and 121 km/h while speed limit was 105 km/h from 14:54:21 to 14:54:21\r\n- Your speed was between 121 and 124 km/h while speed limit was 105 km/h from 14:54:39 to 14:55:15",
         "Points": [
             {
                 "Id": 694549523,
                 "Number": 14,
                 "TotalMeters": 3.7097899999999995,
                 "Speed": 7.3079996109008789,
                 "MidSpeed": 0,
                 "PointDate": "2018-06-14T14:53:07+04:00",
                 "Latitude": 37.33527,
                 "Longitude": -122.03246,
                 "Height": 0,
                 "Course": 0,
                 "Yaw": 0,
                 "Lateral": 0,
                 "AlertType": "",
                 "AlertValue": 0,
                 "SpeedType": "norm",
                 "SpeedLimit": 999,
                 "PhoneUsage": false
             },
             ...
         ],
            "ShareType": "NotShared",
            "CityStart": "Cupertino",
            "CityFinish": "Cupertino",
            "BeaconId": 0,
            "Rating100": 94.0,
            "RatingCornering100": 100.0,
            "RatingAcceleration100": 100.0,
            "RatingBraking100": 100.0,
            "RatingSpeeding100": 66.0,
            "RatingPhoneDistraction100": 100.0,
            "EcoScoreFuel": 100.0,
            "EcoScoreTyres": 100.0,
            "EcoScoreBrakes": 100.0,
            "EcoScoreDepreciation": 100.0,
            "EcoScore": 100.0,
            "AddressStartParts": {
             "CountryCode": "USA",
             "Country": "United States",
             "County": "SANTA CLARA",
             "PostalCode": "95015",
             "State": "CA [California]",
             "City": "Cupertino",
             "District": "CA",
             "Street": "North De Anza Boulevard ",
             "House": "10853"
         },
         "AddressFinishParts": {
             "CountryCode": "USA",
             "Country": "United States",
             "County": "SANTA CLARA",
             "PostalCode": "94024",
             "State": "Central Federal District",
             "City": "Woodland Acres-the Highlands, Los Altos",
             "District": "CA",
             "Street": "Arboretum Dr",
             "House": "5380"
         }
      }
      "Code": 200
   }
}
```

{% endtab %}
{% endtabs %}

## Fields Dictionary

| Field       | Description                                                   |
| ----------- | ------------------------------------------------------------- |
| ID          | Point ID                                                      |
| Number      | Serial number of point in track                               |
| TotalMeters | Distance since start of track enriched, meters                |
| Speed       | Speed in point (km/h)                                         |
| MidSpeed    | Average speed since previous point (km/h)                     |
| Point time  | Point time                                                    |
| Latitude    | Latitude (enriched, float)                                    |
| Longitude   | Longitude (enriched, float)                                   |
| Height      | Height from GPS (sea level, cm)                               |
| Course      | Course from GPS (direction of movement in degrees)            |
| Yaw         | Yaw from GPS (horizontal rotation in degrees)                 |
| Lateral     | Lateral acceleration                                          |
| AlertType   | ‘acc’, ‘deacc’ (acceleration and deceleration events)         |
| AlertValue  | AlertValue for specific alert type in m/s2                    |
| SpeedType   | SpeedType (‘norm’, 'mid', 'high') (default settings 0-10-20+) |
| SpeedLimit  | SpeedLimit for points and direction in km/h                   |
| PhoneUsage  | binary (1- Phone is used, 0- Phone is not used)               |
| Cornering   | for cornering events                                          |
