API Documentation DH-Boss


Advance Driving License Verification API - DHBOSS API

Advance Driving License Verification API - Driving license verification API is an easy-to-use tool for businesses to quickly verify customer KYC and onboard customers securely in minutes. Online Driving License Verification APIs allow certain institutions and entities to verify their customers' credibility is safe and efficient. driving license verification API provides you with the details of any Indian driving license (by simply providing the driving license api. Our driving license verification API allows you to use our driving License Auth to validate onboarding users just. Driving License verification API India Low Price, Cheap per api hit charge. - docs.dhboss.com


GET/POST : PLUS_DL_VERIFICATION

What is needed to use this API and how it will work is described below -
Your Api Key : Get API In Profile & eKYC

Input Parameters Detail
Name Type Description Mandatory
dl_no String {Enter Value} Yes
dob String {Enter Value} Yes
apikeyfill String {Enter Value} Yes

Output Parameters Detail
Name Type Description
code integer 200
message string Success
status string Success
response.dlno string DL36 20180000000
response.name string Dummy Name
response.gender string Male
response.status string Active
response.temporary_address string SANGHI KA BASS WARD NO 3 Delhi,DL 111111
response.permanent_address string SANGHI KA BASS WARD NO 3 Delhi,DL 111111
response.father_name string Dummy Father Name
response.date_of_birth string 01-07-1998
response.issue_date string 27-09-2018
response.issuedRTO string DL36
response.rtoname string RLA Delhi (NT)
response.issuedFrom string 27-09-2018
response.issuedTo string 26-09-2038
response.hazardous_valid_till string
response.hill_valid_till string
response.blood_group string Unknown
response.statename string Delhi
response.statecode string DL
response.classvehicle string Motor Cycle with Gear(Non Transport), LIGHT MOTOR VEHICLE
response.cv string MCWG, LMV
response.ClassOfVehicle.0.COV_Category string NT
response.ClassOfVehicle.0.Class_of_Vehicle string MCWG
response.ClassOfVehicle.0.COV_Issue_Date string 27-09-2018
response.ClassOfVehicle.1.COV_Category string NT
response.ClassOfVehicle.1.Class_of_Vehicle string LMV
response.ClassOfVehicle.1.COV_Issue_Date string 27-09-2018
response.photo string data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAA
response.sig_photo string data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABA






Call API URL
https://api.dhboss.com/apicall/plus_dl_verification/
API Call Request Parameters
dl_no=value&dob=value&apikeyfill=value                                                   
API Call Example Request
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.dhboss.com/apicall/plus_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=DL012016000000&dob=01-07-1998&apikeyfill=code',
 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
?>
API Hit Example Response
{
	"code": 200,
	"message": "Success",
	"status": "Success",
	"response": {
		"dlno": "DL36 20180000000",
		"name": "Dummy Name",
		"gender": "Male",
		"status": "Active",
		"temporary_address": "SANGHI KA BASS WARD NO 3 Delhi,DL 111111",
		"permanent_address": "SANGHI KA BASS WARD NO 3 Delhi,DL 111111",
		"father_name": "Dummy Father Name",
		"date_of_birth": "01-07-1998",
		"issue_date": "27-09-2018",
		"issuedRTO": "DL36",
		"rtoname": "RLA Delhi (NT)",
		"issuedFrom": "27-09-2018",
		"issuedTo": "26-09-2038",
		"hazardous_valid_till": "",
		"hill_valid_till": "",
		"blood_group": "Unknown",
		"statename": "Delhi",
		"statecode": "DL",
		"classvehicle": "Motor Cycle with Gear(Non Transport), LIGHT MOTOR VEHICLE",
		"cv": "MCWG, LMV",
		"ClassOfVehicle": [
			{
				"COV_Category": "NT",
				"Class_of_Vehicle": "MCWG",
				"COV_Issue_Date": "27-09-2018"
			},
			{
				"COV_Category": "NT",
				"Class_of_Vehicle": "LMV",
				"COV_Issue_Date": "27-09-2018"
			}
		],
		"photo": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAA",
		"sig_photo": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABA"
	}
}