Plate Number Verification

Verify a vehicle plate number

This endpoint enables business owners especially those in the car loan, ride hailing space and mobility providers to verify the complete details of a vehicle through the vehicle’s plate number. The verification responses you’ll receive includes the vehicle model/make, vehicle size, category, fuel type and other important details.

To use this API, all you need to provide is the vehicle’s plate number. Once the plate number is accurate, you’d get accurate responses on all other vehicle details.

👍

TEST DATA

vehicle_number: AAA000000

📘

POST

{{URL}}/identitypass/verification/vehicle

Request Header

KeyDescription
app-idYour App ID
x-api-keyYour Secret Key

Request Body

KeyDescription
vehicle_numberVehicle Number

Sample Response

{
    "status": true,
    "detail": "Vehicle Verification Successful",
    "response_code": "00",
    "data": {
        "vehicle_number": "AAA000000",
        "vehicle_name": "Toyota",
        "vehicle_color": "BLUE"
    },
    "verification": {
        "status": "VERIFIED",
        "reference": "7eb18ce9-af31-43e6-837a-32808366d764"
    }
}

Response Description

ResponseDescription
statusIndicates that the request was successful.
detailIndicates the detail of the response.
response_codeRepresents the response code.
dataAn array containing the information received.
vehicle_numberThe license plate number of the vehicle.
vehicle_nameThe make or manufacturer name of the vehicle.
vehicle_colorThe color of the vehicle.
verificationProvides details about the verification process itself.
statusIndicates the status of the verification.
referenceA unique reference identifier for the verification process.