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

ParameterTypeDescription
idNumber
(REQUIRED)
stringLicense Plate Number

Request Body

POST ParameterTypeDescription
firstname
(REQUIRED)
stringFirst Name
lastname
(REQUIRED)
stringLast 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"
    }
}