Provides real-time vehicle tracking data including location, unit number, VIN, and timestamp for all units associated with a USDOT number.

Endpoint

GEThttps://read.tteld.com/api/externalservice/units-by-usdot/:usdot

Authentication Headers

HeaderValue
x-api-keyYour API key
provider-tokenYour provider token

Path Parameters

ParameterRequiredDescription
usdotYesCompany USDOT number

Example Request

bash
curl --location \
  'https://read.tteld.com/api/externalservice/units-by-usdot/123456' \
  --header 'x-api-key: <your_key>' \
  --header 'provider-token: <your_token>'

Response Format

Returns a units array containing the current tracking data for all vehicles under the specified USDOT.

json
{
  "units": [
    {
      "truck_number": "554322",
      "vin": "4V4NC9EJ0PN613787",
      "id": 293,
      "coordinates": {
        "lat": 27.6830997467041,
        "lng": -99.4631118774414
      },
      "rotation": 217,
      "timestamp": "2026-04-10T02:08:48.316Z",
      "odometer": 493932,
      "speed": 9
    }
  ]
}

Response Fields

FieldTypeDescription
truck_numberstringAssigned truck number
vinstringVehicle Identification Number
idnumberInternal unit identifier
coordinates.latnumberCurrent latitude
coordinates.lngnumberCurrent longitude
rotationnumberVehicle heading in degrees (0–360)
timestampstringISO 8601 timestamp of the last tracking update
odometernumberOdometer reading in miles
speednumberCurrent speed in mph

API Key Generation

Keys are created via the company's main dashboard account. Navigate to the sidebar, scroll to "More", then select API Keys. See the full guide: How to Create an API Key.

Related

© 2026 TT ELD API