License Plate (Premium)
Verify any vehicle in Nigeria using the license plate number to confirm the vehicle details and ownership Information.
{{baseUrl}}/v1/ng/identities/license-plate-premium/{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 | 
| phone (OPTIONAL) | string | Phone Number | 
This endpoint will return a snapshot of the bio-data information captured. To conduct an actual [test]
Response Sample
{
    "id": 1695,
    "applicant": {
        "firstname": "Bunch",
        "lastname": "dillon",
        "phone": "08000000000"
    },
    "summary": {
        "license_plate_check": {
            "status": "EXACT_MATCH",
            "fieldMatches": {
                "firstname": true,
                "lastname": true,
                "phoneNumber": 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",
        "address": "5, Kolade Jumbo Street, Lagos",
        "phone": "08000000000"
    }
}
Updated almost 3 years ago