OCR
Extract license plate from image
Extract a license plate string from a vehicle photo. When country is provided, the result must additionally pass region-specific format validation.
post/extract-plate
Request body
Example request
{
"image": "iVBORw0KGgoAAAANSUhEUgAA...",
"country": "sk"
}Response
OCR result. A null plateNumber indicates no plate could be extracted - this is not an error.
Example response
{
"plateNumber": "BA123AB",
"confidence": 0.94
}