Driving License Verification API allows you to verify PAN India driving license | Make your onboarding process safer, faster, and smarter, Driving license verification API is an easy-to-use tool for businesses to quickly verify customer KYC and onboard customers securely in minutes. , What is a Driving License verification API? DL verification API is a system which helps an enterprise to authenticate the drivers license of any individual with highest accuracy in record time. Driving License Verification API is an extremely important identity. It proves that you are eligible. - docs.dhboss.com
What is needed to use this API and how it will work is described below -
Your Api Key : Get API In Profile & eKYC
Name | Type | Description | Mandatory |
---|---|---|---|
dl_no | String | {Enter Value} | Yes |
apikeyfill | String | {Enter Value} | Yes |
Name | Type | Description |
---|---|---|
code | integer | 200 |
status | string | success |
response.dlno | string | DL0120150000000 |
response.name | string | Dummy Name |
response.father_name | string | Father Dummy Name |
response.date_of_birth | string | 01-07-1998 |
response.gender | string | Male |
response.issuedFrom | string | 21-03-2017 |
response.issuedTo | string | 20-03-2037 |
response.status | string | Active |
https://api.dhboss.com/apicall/dl_verification/
dl_no=value&apikeyfill=value
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.dhboss.com/apicall/dl_verification/', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_POSTFIELDS => 'dl_no=DL1920110000000&apikeyfill=apikey', )); $response = curl_exec($curl); curl_close($curl); echo $response; ?>
{ "code": 200, "status": "success", "response": { "dlno": "DL0120150000000", "name": "Dummy Name", "father_name": "Father Dummy Name ", "date_of_birth": "01-07-1998", "gender": "Male", "issuedFrom": "21-03-2017", "issuedTo": "20-03-2037", "status": "Active" } }