estimates-controller

Get a pricing estimate

Returns a pricing estimate for services by vehicle and zip

post/api/estimates

Request body

zipCodestring required

Example request

{
  "car": {
    "year": 2010,
    "make": "Acura",
    "model": "TSX",
    "subModel": "V6",
    "engine": "3.5L V6",
    "engineId": 9084,
    "baseVehicleId": 30489,
    "vin": "JH4CU2F61CL005749",
    "mileage": 10000
  },
  "services": [
    {
      "id": 12,
      "name": "Synthetic Oil Change"
    }
  ],
  "zipCode": "90245"
}

Response

Returns an Estimate with all available pricing info.

Changes