License Plate Validation

Available lang-locales: de (Germany), ch (Switzerland), and en (North America)

Parloa’s License Plate Validation Service is designed to process and validate license plates from specified regions – Germany (de), Switzerland (ch), and North America (NA). It checks for common mis-transcriptions between numbers and letters, validates against region-specific license plate formats, and returns the processed input.

Input Formatting

Input can be provided as a non-delimited string, like “B ER 1234,” or delimited with a “minus” – “B minus ER 1234.” The latter helps reduce ambiguity, especially beneficial when using phoneV2, as transcription may not reliably add spaces due to factors like talking speed.

For North American regions, separate the region identifier (e.g., state or province) and the license plate, then input both parameters into the service.

Hint: Retain spaces in states or provinces with multi-word names, such as “District of Columbia” or “Nova Scotia.”

Service Configuration

  • single : A valid single result was found.

  • multi: Multiple candidate license plates were found due to ambiguous input or multiple results like “Frankfurt.”

  • fail: No valid license plate was detected.

Example Inputs

License plate from region de:

{
    "input": {
        "region": "de",
        "utterance": "KN AX 45"
    }
}

License plate from region North America:

{
    "input": {
        "region": "District of Columbia",
        "utterance": "AG5766"
    }
}

Last updated