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
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
vehicle_number | Vehicle 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
Response | Description |
---|---|
status | Indicates that the request was successful. |
detail | Indicates the detail of the response. |
response_code | Represents the response code. |
data | An array containing the information received. |
vehicle_number | The license plate number of the vehicle. |
vehicle_name | The make or manufacturer name of the vehicle. |
vehicle_color | The color of the vehicle. |
verification | Provides details about the verification process itself. |
status | Indicates the status of the verification. |
reference | A unique reference identifier for the verification process. |
Updated 8 months ago