Questions tagged [vin]

VIN is an abbreviation for Vehicle Identification Number

A Vehicle Identification Number, commonly abbreviated to VIN, is a unique code including a serial number, used by the automotive industry to identify individual motor vehicles, towed vehicles, motorcycles, scooters and mopeds as defined in ISO 3833.

To know more visit Wiki

38 questions
22
votes
8 answers

How to validate a VIN number?

How can I validate a Vehicle Identification Number with PHP? I just need to check if the entered VIN number is correct or not.
Optimus
  • 1,703
  • 4
  • 22
  • 41
19
votes
3 answers

Can anyone recommend a REST / SOAP Web Service for VIN Numbers?

I'm developing a website for a small used car dealership with a need for VIN decoding. Given as much, I'm looking for maybe 1,000 - 1,500 requests for VINs per year. Does anyone have experience with a price-efficient web service to deliver such…
bkingdev
  • 237
  • 1
  • 2
  • 7
12
votes
3 answers

Unable to Get VIN Number response from OBD-2 Device

I need to fetch VIN number from car's controller using plxKiwi-2 wifi obd2 device. I am getting other information like car rpm,speed,throttle position,etc. in correct format. But when I request for VIN Number it gives me below response. 014 0: 49 02…
iCoder
  • 1,298
  • 1
  • 9
  • 25
9
votes
3 answers

Read VIN from OBD adapter

i'm working on this app which requires me to read the VIN from the OBD II adapter and check if OBD is connected to the same vehicle. When i'm sending the command(09 02) to fetch VIN i'm not able to get the complete VIN. Every time i send the…
vjamit
  • 195
  • 1
  • 2
  • 10
7
votes
0 answers

VIN OCR Dataset

does anyone know of any labelled datasets including images of VIN (Vehicle Identification Number), or in German FIN (Fahrzeugidentifizierungsnummer)? Or if not, are there any other datasets that could be used for the purpose of training an OCR model…
Sean
  • 135
  • 5
7
votes
0 answers

How can I get a list of VIN manufacturer Equipment Codes, Vehicle Descriptor Section?

I am trying to build a VIN decoder, per paying a service will not work for my application I have found WMI data HERE WMI Info for all manufacturers The manufacturer.mbd contains all WMI info What I am looking for at this point is a Data base that…
hanco ike
  • 285
  • 2
  • 14
6
votes
3 answers

Is there any java library to read the vin number barcodes from image?

I am building a application to read vin number barcodes using camera from android phone.I do not know how to read the barcodes from the image captured from the camera.(i.e) Is there any class to read the barcode of vin number format.I have tried…
Kris Rajkumar
  • 419
  • 1
  • 7
  • 14
5
votes
2 answers

ISO 3779 vehicle VIN decoder in PHP?

Does anyone know of a ISO 3779 vehicle VIN decoder library in PHP, or Perl, or Python (or any other language, I can convert code easily) available as open source/freeware? Even just something to decode the WMI portion (first 3 positions) would…
Skye
  • 83
  • 1
  • 4
5
votes
1 answer

Web scraping the make/model/year of VIN numbers in RStudio

I am currently working on a project where I need to find the manufacturer, model, and year of VIN numbers. I have a list of 300 different VIN numbers. Going through each individual VIN number and manually inputting the manufacturer, model, and year…
4
votes
4 answers

VIN Barcode Scanner SDK

I am searching for a VIN (vehicle identification number) barcode SDK. Has any1 implemented then please help me with some tutorials ans sample codes. I din't find anything helpful.All i found is barcode reader but not VIN. Any help will be…
Dhara
  • 4,093
  • 2
  • 36
  • 69
4
votes
2 answers

ColdFusion VIN number validation code

I am trying to convert this PHP validation code to ColdFusion. However, I cannot get my CF version to correctly validate a VIN. I am hoping someone can shed some light on what I'm missing. function isVIN(v) { var i = ""; …
RHPT
  • 2,560
  • 5
  • 31
  • 43
3
votes
1 answer

Weird limit on NHTSA batch VIN decode via WinHTTPRequest

I'm encountering a problem (HTTP STATUS 400 Bad Request) using code to decode VINs if I send more than 12, but if I send a list of over 100 by pasting into website, I get results. I'm using following code to send a list of VINs to get back…
Matthew Swaringen
  • 305
  • 1
  • 2
  • 10
2
votes
2 answers

Is it possible to read VIN from CAN data?

Will VIN information be available from CAN data? Does any ECUs are module broadcasts VIN information on CAN channel?
Kumar
  • 616
  • 1
  • 18
  • 39
2
votes
1 answer

Mysql searching records containing wildcards

I have a table with tens of thousands of VIN numbers. Many of them look along the lines of this: 6MMTL#A423T###### WVWZZZ3BZ1?###### MPATFS27H??###### SCA2D680?7UH##### SAJAC871?68H06### The # represents a digit and the ? a letter (A-Z). I want to…
carbroker
  • 21
  • 2
2
votes
1 answer

VIN Decoding: Model Year

I'm trying to code a simple VIN (ISO 3779) decoder: manufacturer and model year. I'm having some issues w/ decoding the model year, though. According to Wikipedia: For passenger cars, and for multipurpose passenger vehicles and trucks with a gross…
hb.
  • 1,705
  • 5
  • 22
  • 43
1
2 3