Vehicle Maintenance Schedule

Get a complete maintenance schedule using VIN or vehicle details.
GET
Rate Limit: 10 RPS

Authentication

All API requests require an API key to be included in the x-api-key header.

Endpoint

GET /maintenance/schedule

Parameters

NameTypeRequired
vinstringOptional
yearstringOptional
makestringOptional
modelstringOptional
trimstringOptional

Code Examples

Sample Response

JSON Response
{
  "data": {
    "vehicle": {
      "make": "Ford",
      "trim": "King Ranch",
      "year": 2015,
      "model": "F-150"
    },
    "schedule": [
      {
        "mileage": 5000,
        "services": [
          {
            "components": [
              {
                "tag": "AirFilters",
                "name": "Air Cleaner Element",
                "note": "Inspect frequently, service as required.",
                "types": [
                  "PARTICULATE_EXPOSURE",
                  "UNPAVED_TERRAIN"
                ]
              },
              {
                "tag": "OilFilter",
                "name": "Engine Oil & Filter",
                "note": "Change engine oil and filter as indicated by the message center.",
                "types": [
                  "PARTICULATE_EXPOSURE",
                  "UNPAVED_TERRAIN"
                ]
              }
            ],
            "operationType": "REPLACE"
          },
          {
            "components": [
              {
                "tag": "TireReplacement",
                "name": "Tires",
                "note": "Inspect the wheels and related components for abnormal noise, wear, looseness or drag. Rotate tires, inspect tires for wear and measure tread depth",
                "types": [
                  "PARTICULATE_EXPOSURE",
                  "UNPAVED_TERRAIN"
                ]
              }
            ],
            "operationType": "ROTATE"
          },
          {
            "components": [
              {
                "tag": "SteeringSuspension",
                "name": "Steering Components",
                "note": "Inspect frequently, service as required; steering linkage, ball joints and U-joints; lubricate if equipped with grease fittings.",
                "types": [
                  "UNPAVED_TERRAIN"
                ]
              }
            ],
            "operationType": "INSPECT"
          }
        ]
      },
      {
        "mileage": 10000,
        "services": [
          {
            "components": [
              {
                "tag": "AirFilters",
                "name": "Air Cleaner Element",
                "note": "Inspect frequently, service as required.",
                "types": [
                  "PARTICULATE_EXPOSURE",
                  "UNPAVED_TERRAIN"
                ]
              },
              {
                "tag": "OilFilter",
                "name": "Engine Oil & Filter",
                "note": "Change engine oil and filter as indicated by the message center.",
                "types": [
                  "PARTICULATE_EXPOSURE",
                  "UNPAVED_TERRAIN"
                ]
              }
            ],
            "operationType": "REPLACE"
          },
          {
            "components": [
              {
                "tag": "TireReplacement",
                "name": "Tires",
                "note": "Inspect the wheels and related components for abnormal noise, wear, looseness or drag. Rotate tires, inspect tires for wear and measure tread depth",
                "types": [
                  "PARTICULATE_EXPOSURE",
                  "UNPAVED_TERRAIN"
                ]
              }
            ],
            "operationType": "ROTATE"
          },
          {
            "components": [
              {
                "tag": "SteeringSuspension",
                "name": "Steering Components",
                "note": "Inspect frequently, service as required; steering linkage, ball joints and U-joints; lubricate if equipped with grease fittings.",
                "types": [
                  "UNPAVED_TERRAIN"
                ]
              }
            ],
            "operationType": "INSPECT"
          }
        ]
      }
    ]
  },
  "status": "success"
}

Options Endpoints