Overview
The Smart Tire API provides two endpoints to identify vehicles pending inspection:- List Vehicles Pending Pressure Inspection - Find vehicles that haven’t had a pressure check since a specified date
- List Vehicles Pending Wear Inspection - Find vehicles that haven’t had a wear inspection since a specified date
How It Works
Use theuninspectedSince parameter to specify a cutoff timestamp. The API returns vehicles where:
- The last inspection occurred before the specified timestamp, OR
- The vehicle has never been inspected
Vehicles that have never been inspected are included in the results with a null or missing inspection date, ensuring you don’t miss any uninspected vehicles in your fleet.
Response Data
Each response includes:Vehicle Information
Theasset object contains vehicle identification details:
Location Data
WhenincludeLocation=true, the response includes the vehicle’s last known position:
Filtering Options
By Group
Filter results to vehicles within a specific group:API client typesThere are two types of API clients:
- myConnectedFleet web users — Must always provide a
groupIdwhen accessing the API - Customer-level API users — Can access data by providing only the
customerId
Use Cases
Daily Inspection Compliance Check
Find all vehicles that haven’t had a pressure check in the last 7 days:Monthly Wear Inspection Schedule
Find all vehicles that haven’t had a wear inspection in the last 30 days:Locate Uninspected Vehicles
Find uninspected vehicles and include their current location to plan service routes:Never-Inspected Vehicles
To find vehicles that have never been inspected, setuninspectedSince to a future date. All vehicles with no inspection history will be returned:
Pagination
Both endpoints support pagination for large fleets:
The response includes pagination metadata:
Paginating Through Results
Integration Patterns
Automated Compliance Monitoring
- Schedule a daily job to query uninspected vehicles
- Compare against your inspection policy (e.g., pressure every 7 days, wear every 30 days)
- Generate alerts or work orders for overdue vehicles
- Track compliance rates over time
Service Route Planning
- Query uninspected vehicles with
includeLocation=true - Use GPS coordinates to cluster vehicles by location
- Plan efficient service routes to inspect multiple vehicles
- Prioritize based on how overdue each vehicle is (results are sorted oldest first)
Dashboard Integration
- Query both pressure and wear uninspected endpoints
- Display counts and lists in your fleet management dashboard
- Highlight vehicles that are overdue for both inspection types
- Provide drill-down to individual vehicle details
