OCR
Extract VIN from image
Extract a 17-character VIN from an image of a windshield etching, dashboard plate, door jamb sticker, or registration document. Accepts base64-encoded JPEG/PNG/WebP images (15 MB body limit). The data-URL prefix data:image/<fmt>;base64, is stripped automatically.
post/extract-vin
Request body
Example request
{
"image": "iVBORw0KGgoAAAANSUhEUgAA..."
}Response
OCR result. A null vin indicates no VIN could be extracted - this is not an error.
Example response
{
"vin": "WBAVA31070NL12345",
"confidence": 0.92
}