Basic Drivers License
This endpoint allows you to verify users drivers license details.
Our lookup driver's license endpoint, enables businesses to quickly and easily verify the accuracy of the information on a customer's license, ensuring that their identity is legitimate and up-to-date.
Once connected, you can submit the relevant details from the customer's driver's license, such as their name, address, date of birth, and license number. The endpoint then uses advanced algorithms and machine learning techniques to compare the details you've submitted with data from a variety of sources, including government databases and third-party sources. This allows the endpoint to quickly and accurately determine whether or not the details on the license are legitimate.
TEST DATA
number: AAD2320823198
dob: 1999-12-21
first_name: test
last_name: test
POST
{{URL}}/identitypass/verification/drivers_license
Request Header
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
number | License Number |
dob | Date of Birth |
first_name | First name |
last_name | Last name |
Sample Response
{
"status": true,
"detail": "DL Verification Successfull",
"response_code": "00",
"frsc_data": {
"verified": true,
"message": "Drivers License details was verified successfully"
}
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
detail | This field indicates the detail of the response. |
response_code | Represents the response code. |
Frsc_data | A JSON object containing the following data from the Federal Road Safety Corps (FRSC): |
verified | Indicates whether or not the driver's license has been verified. |
message | A message that indicates the status of the verification. |
Updated 8 months ago