Image Input
Accept still images that contain a printed VIN, such as photos of labels, receipts, invoices, and documents.
VINocr extracts VINs from images of labels, receipts, invoices, documents, vehicle tags, and other visual sources where manual entry would be slow or error-prone.
The service is designed for server-side integration and returns structured recognition output that can be reviewed, stored, or passed into VINdecode and other workflows.
Reduce manual typing when VINs are present in images or scanned documents.
Accept still images that contain a printed VIN, such as photos of labels, receipts, invoices, and documents.
Return the recognized VIN and location metadata that your application can display for review.
Pass the extracted VIN into VINdecode, VINfix, claim intake, inspection, service, or inventory workflows.
Keep image upload and token handling behind your server-side application.
Capture or upload an image that contains a visible VIN.
Your backend sends the image with a valid bearer token.
Display the extracted VIN and bounding location for verification.
Use the captured VIN in downstream vehicle-data workflows.
Recognition quality depends on source image quality.
OCR output should be reviewed when the image is noisy, the font is very small, or the VIN is partially obscured. Review is still faster than retyping the VIN character by character.
Sample image, recognized VIN region, and structured result.
{
"vin_captured": "19UYA42601A019296",
"left": 54,
"top": 289,
"width": 445,
"height": 22
}
<VINocr> <VIN_Captured>19UYA42601A019296</VIN> <Left>54</Left> <Top>289</Top> <Width>445</Width> <Height>22</Height> </VINocr>
{
"vin_captured": "JF1BL5LJ35G002001",
"left": 113,
"top": 54,
"width": 158,
"height": 11
}
<VINocr> <VIN_Captured>JF1BL5LJ35G002001</VIN> <Left>113</Left> <Top>54</Top> <Width>158</Width> <Height>11</Height> </VINocr>
{
"vin_captured": "WP0AC2A999S783477",
"left": 45,
"top": 61,
"width": 190,
"height": 46
}
<VINocr> <VIN_Captured>WP0AC2A999S783477</VIN> <Left>45</Left> <Top>61</Top> <Width>190</Width> <Height>46</Height> </VINocr>
Submit a sample image and inspect JSON or XML recognition output.