License Plate (Basic)

Verify any vehicle in Nigeria using the license plate number to confirm the vehicle details and the name of the vehicle owner.

{{baseUrl}}/v1/ng/identities/license-plate-basic/{plateNumber}

Path Parameter

Parameter

Type

Description

idNumber (REQUIRED)

string

License Plate Number

Request Body

POST Parameter

Type

Description

firstname (REQUIRED)

string

First Name

lastname
(REQUIRED)

string

Last Name

This endpoint will return a snapshot of the bio-data information captured. To conduct an actual [test]

Response Sample

{
    "id": 1691,
    "applicant": {
        "firstname": "Bunch",
        "lastname": "Dillon"
      
    },
    "summary": {
        "license_plate_check": {
            "status": "EXACT_MATCH",
            "fieldMatches": {
                "firstname": true,
                "lastname": true
              
            }
        }
    },
    "status": {
        "state": "complete",
        "status": "verified"
    },
    "license_plate": {
        "plateNumber": "MLZ823ZZ",
        "chassisNumber": "JTJBARBZ8G20355542",
        "vehicleMake": "Lexus ",
        "vehicleModel": "NX 200T",
        "vehicleCategory": "Private",
        "firstname": "Bunch",
        "middlename": "John",
        "lastname": "Dillon"
    }
}