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

Endpoint

GEThttps://read.sbaeld.com/api/v2/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 --request GET \
  'https://read.sbaeld.com/api/v2/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": "string",
      "vin": "string",
      "coordinates": {
        "lat": 0.0,
        "lng": 0.0
      },
      "timestamp": "2026-01-10T08:32:11.000Z"
    }
  ]
}

Response Fields

FieldTypeDescription
truck_numberstringAssigned truck number
vinstringVehicle Identification Number
coordinates.latnumberCurrent latitude
coordinates.lngnumberCurrent longitude
timestampstringISO 8601 timestamp of the last tracking update

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 SBA ELD API