3002.VIN OCR

Brief Summary:

Photos containing VIN codes captured from locations such as the vehicle nameplate, driver’s license, or front windshield can be processed through an OCR recognition program to convert them into a 17-character vehicle identification number (VIN). Notes:

Request URL: Request Example (this is a GET-style example; in actual use, please submit via POST):Example image URL: http://www.17vin.com/images/vin_test.png Request method:

【Note】: In actual implementation, please use the POST method. The parameters action, base64_urlencode_imagestring, user, and token must not be included in the URL; they should only be sent in the POST request body.

【Example】: The following is a C# code example; for other programming languages, please use AI to translate accordingly.

Parameters:

ParameterRequiredTypeDescription
actionYesstringvin_ocr
base64_urlencode_imagestringYesstringImage data that has been base64 encoded (excluding the data:image/png;base64, prefix) and then URL-encoded. The final size of the base64 encoded and URL-encoded string must not exceed 4MB. The shortest side of the image must be at least 15px, and the longest side must not exceed 4096px. Supported formats: jpg/jpeg, png, bmp.Example image URL: http://www.17vin.com/images/vin_test.png
userYesstringuser name
tokenYesstringMD5(concat(MD5('myusername'),MD5('mypassword'),'/?action=vin_ocr&base64_urlencode_imagestring=xxxxxx'))

Response example
{

"code":1,

"msg":"success",

"data":"LFMGJE720DS070251"

}

Response description

ParameterTypeDescription
vinstringOCR-recognized VIN (Vehicle Identification Number extracted via Optical Character Recognition)

Remark