Auto.dev

VIN Decode

Decode a 17-character Vehicle Identification Number (VIN) to retrieve comprehensive vehicle specifications and manufacturing details

GET
/vin/{vin}

Path Parameters

vinstring

Response Body

curl -X GET "https://www.auto.dev/api/vin/string"
{
  "years": [
    {
      "year": 0,
      "styles": [
        {
          "trim": "string",
          "submodel": {
            "niceName": "string",
            "modelName": "string",
            "body": "string"
          },
          "name": "string",
          "id": 0
        }
      ],
      "id": 0
    }
  ],
  "transmission": {
    "transmissionType": "string",
    "numberOfSpeeds": "string",
    "name": "string",
    "id": "string",
    "equipmentType": "string",
    "availability": "string"
  },
  "squishVin": "string",
  "price": {
    "estimateTmv": true,
    "deliveryCharges": 0,
    "baseMsrp": 0
  },
  "options": [
    {
      "options": [
        {
          "name": "string",
          "id": "string",
          "equipmentType": "string",
          "description": "string",
          "availability": "string"
        }
      ],
      "category": "string"
    }
  ],
  "numOfDoors": "string",
  "mpg": {
    "highway": "string",
    "city": "string"
  },
  "model": {
    "niceName": "string",
    "name": "string",
    "id": "string"
  },
  "matchingType": "string",
  "make": {
    "niceName": "string",
    "name": "string",
    "id": 0
  },
  "engine": {
    "valve": {
      "timing": "string",
      "gear": "string"
    },
    "type": "string",
    "totalValves": 0,
    "torque": 0,
    "size": 0,
    "rpm": {
      "torque": 0,
      "horsepower": 0
    },
    "name": "string",
    "id": "string",
    "horsepower": 0,
    "fuelType": "string",
    "equipmentType": "string",
    "displacement": 0,
    "cylinder": 0,
    "configuration": "string",
    "compressorType": "string",
    "compressionRatio": 0,
    "code": "string",
    "availability": "string"
  },
  "drivenWheels": "string",
  "colors": [
    {
      "options": [
        {
          "name": "string",
          "id": "string",
          "equipmentType": "string",
          "availability": "string"
        }
      ],
      "category": "string"
    }
  ],
  "categories": {
    "vehicleType": "string",
    "vehicleStyle": "string",
    "vehicleSize": "string",
    "primaryBodyType": "string",
    "market": "string",
    "epaClass": "string"
  }
}