get
/api/v2/regional-travel-metrics/vehicle-distance-traveled/{id}
Python SDK method:
client.rtm.vdt(id=job_id).results()

Get vehicle distance traveled results

Returns paginated vehicle distance traveled rows for a completed VDT job. Each row represents aggregated distance statistics for one zone.

Altitude Help Center — getVehicleDistanceTraveled

Input Parameters

NameLocationTypeValuesDescriptionValue Required
idpathstring-Unique resource identifier.Y
pageTokenquerystring-Pagination token returned in the Link header of a previous response. Omit to fetch the first page.N

Success Responses

200 response: object

Paginated result data. When more pages are available, a Link: rel="next" header and Altitude-* pagination headers are included in the response.

NameTypeDescription
distancenumber (double)The distance traveled by all the vehicles in the analysis (miles or kilometers).
distanceByFleetSizearray<object>Array of objects representing the distance, trip count and vehicle counts for each fleet size bucket.
distanceByFuelTypearray<object>Array of objects representing the distance, trip count and vehicle counts for each fuel type.
distanceByIndustryarray<object>Array of objects representing the distance, trip count and vehicle counts for each NAICS code 1.
distanceByRoadTypearray<object>Array of objects representing the distance, trip count and vehicle counts for each road type.
distanceByVehicleClassarray<object>Array of objects representing the distance, trip count and vehicle counts for each vehicle class.
distanceByVehicleYeararray<object>Array of objects representing the distance, trip count and vehicle counts for each vehicle year bucket.
distanceByVocationarray<object>Array of objects representing the distance, trip count and vehicle counts for each vocation.
iso_3166_2stringThe ISO 3166:2 code of the zone.
tripCountinteger (int64)The total number of trips in the zone.
tripCountTotalinteger (int64)The total number of trips in the analysis.
vehicleCountinteger (int64)The total number of unique vehicles in the analysis.
vehicleCountTotalinteger (int64)The total number of unique vehicles in the analysis.
zoneCodestringRaw zone code.
zoneIdstringThe zone id for which the data is returned.
zoneNamestringDescription of the zone when available. The value is based on the type of zone: 'State' — state name, 'County' — county name, 'City' — city name, 'CTR' — census tract description, 'Segment' — road name if available, 'Custom' — custom zone name.
zoneTypestringThe zone type of the zone.

Response Errors

HTTP Status CodeReason
400The request body or parameters are invalid.
401Authentication is required or the provided credentials are invalid.
403The authenticated user lacks permission to perform this operation.
404The requested resource does not exist.
409Result not yet ready. Poll the status monitor.
429The request rate limit has been exceeded.
500An unexpected server error occurred.