VIN
Convert license plate to VIN
Convert a license plate number to its corresponding Vehicle Identification Number (VIN). Requires a country code. Supported countries: PL, NO, SK, SE, CZ, US. US lookups also require a 2-letter state code, since US plates are only unique per state.
get/plate-to-vin/{plateNumber}
Path parameters
plateNumberstring required
Example:WO91287
License plate number
Query parameters
country'PL' | 'NO' | 'SK' | 'SE' | 'CZ' | 'US' required
Example:PL
ISO 3166-1 alpha-2 country code. Supported: PL, NO, SK, SE, CZ, US.
statestring
Example:CA
2-letter US state code (e.g. CA). Required when country=US; ignored otherwise.
Response
Successfully converted plate to VIN
Example response
{
"plateNumber": "WO91287",
"country": "PL",
"state": "CA",
"vin": "WAUZZZ4F55N052232"
}