GET
/
{vin}
curl --request GET \
  --url https://tco.vin/{vin}
{
  "vehicle": {
    "vin": "3TYSZ5AN8PT104981",
    "year": "2023",
    "make": "Toyota",
    "model": "Tacoma"
  },
  "zip": "90210",
  "tco": {
    "total": {
      "federalTaxCredit": 0,
      "insurance": 6972,
      "maintenance": 5745,
      "repairs": 887,
      "taxesAndFees": 4435,
      "financeInterest": 7807,
      "depreciation": 13911,
      "fuel": 19829,
      "tcoPrice": 59586,
      "averageCostPerMile": 0.79
    },
    "years": {
      "1": {
        "insurance": 1300,
        "maintenance": 67,
        "repairs": 0,
        "taxesAndFees": 3479,
        "financeInterest": 2663,
        "depreciation": 8500,
        "fuel": 3735,
        "tcoPrice": 19744,
        "averageCostPerMile": 0.79
      },
      "2": {
        "insurance": 1346,
        "maintenance": 530,
        "repairs": 0,
        "taxesAndFees": 252,
        "financeInterest": 2156,
        "depreciation": 1316,
        "fuel": 3847,
        "tcoPrice": 9447,
        "averageCostPerMile": 0.79
      },
      "3": {
        "insurance": 1393,
        "maintenance": 502,
        "repairs": 129,
        "taxesAndFees": 243,
        "financeInterest": 1607,
        "depreciation": 1247,
        "fuel": 3962,
        "tcoPrice": 9083,
        "averageCostPerMile": 0.79
      },
      "4": {
        "insurance": 1441,
        "maintenance": 2147,
        "repairs": 307,
        "taxesAndFees": 235,
        "financeInterest": 1013,
        "depreciation": 1462,
        "fuel": 4081,
        "tcoPrice": 10686,
        "averageCostPerMile": 0.79
      },
      "5": {
        "insurance": 1492,
        "maintenance": 2499,
        "repairs": 451,
        "taxesAndFees": 226,
        "financeInterest": 368,
        "depreciation": 1386,
        "fuel": 4204,
        "tcoPrice": 10626,
        "averageCostPerMile": 0.79
      }
    }
  }
}
vin
string
required

The Vehicle Identification Number (e.g. WP0AF2A99KS165242)

zip
string

The ZIP code for the customer, optional, but recommended

Response

vehicle
object
required
tco
object
required
{
  "vehicle": {
    "vin": "3TYSZ5AN8PT104981",
    "year": "2023",
    "make": "Toyota",
    "model": "Tacoma"
  },
  "zip": "90210",
  "tco": {
    "total": {
      "federalTaxCredit": 0,
      "insurance": 6972,
      "maintenance": 5745,
      "repairs": 887,
      "taxesAndFees": 4435,
      "financeInterest": 7807,
      "depreciation": 13911,
      "fuel": 19829,
      "tcoPrice": 59586,
      "averageCostPerMile": 0.79
    },
    "years": {
      "1": {
        "insurance": 1300,
        "maintenance": 67,
        "repairs": 0,
        "taxesAndFees": 3479,
        "financeInterest": 2663,
        "depreciation": 8500,
        "fuel": 3735,
        "tcoPrice": 19744,
        "averageCostPerMile": 0.79
      },
      "2": {
        "insurance": 1346,
        "maintenance": 530,
        "repairs": 0,
        "taxesAndFees": 252,
        "financeInterest": 2156,
        "depreciation": 1316,
        "fuel": 3847,
        "tcoPrice": 9447,
        "averageCostPerMile": 0.79
      },
      "3": {
        "insurance": 1393,
        "maintenance": 502,
        "repairs": 129,
        "taxesAndFees": 243,
        "financeInterest": 1607,
        "depreciation": 1247,
        "fuel": 3962,
        "tcoPrice": 9083,
        "averageCostPerMile": 0.79
      },
      "4": {
        "insurance": 1441,
        "maintenance": 2147,
        "repairs": 307,
        "taxesAndFees": 235,
        "financeInterest": 1013,
        "depreciation": 1462,
        "fuel": 4081,
        "tcoPrice": 10686,
        "averageCostPerMile": 0.79
      },
      "5": {
        "insurance": 1492,
        "maintenance": 2499,
        "repairs": 451,
        "taxesAndFees": 226,
        "financeInterest": 368,
        "depreciation": 1386,
        "fuel": 4204,
        "tcoPrice": 10626,
        "averageCostPerMile": 0.79
      }
    }
  }
}