Skip to main content
Tire inspection tracking helps fleet managers identify vehicles that are overdue for pressure or wear inspections. By monitoring inspection compliance, you can ensure all vehicles meet safety standards and maintenance schedules.

Overview

The Smart Tire API provides two endpoints to identify vehicles pending inspection: Both endpoints return vehicles sorted by inspection date in ascending order (oldest first), making it easy to prioritize the most overdue vehicles.

How It Works

Use the uninspectedSince 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

The asset object contains vehicle identification details:

Location Data

When includeLocation=true, the response includes the vehicle’s last known position:
Performance considerationEnabling includeLocation=true requires additional backend processing to retrieve and enrich location data. If location information is not needed, leave this parameter unset or set to false to improve response times.

Filtering Options

By Group

Filter results to vehicles within a specific group:
API client typesThere are two types of API clients:
  1. myConnectedFleet web users — Must always provide a groupId when accessing the API
  2. 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, set uninspectedSince 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

  1. Schedule a daily job to query uninspected vehicles
  2. Compare against your inspection policy (e.g., pressure every 7 days, wear every 30 days)
  3. Generate alerts or work orders for overdue vehicles
  4. Track compliance rates over time

Service Route Planning

  1. Query uninspected vehicles with includeLocation=true
  2. Use GPS coordinates to cluster vehicles by location
  3. Plan efficient service routes to inspect multiple vehicles
  4. Prioritize based on how overdue each vehicle is (results are sorted oldest first)

Dashboard Integration

  1. Query both pressure and wear uninspected endpoints
  2. Display counts and lists in your fleet management dashboard
  3. Highlight vehicles that are overdue for both inspection types
  4. Provide drill-down to individual vehicle details