API Documentation DH-Boss


Pro RTO Vehicle Information Api - DHBOSS API

Vehicle Owner Information Api - Vehicle RC Verification API also known as the Registration Certificate is issued for your vehicle and acts as a proof that your vehicle is registered with the Indian Government. This is issued by the RTO or the Regional Transport Office. Vehicle Registration Check (RC) Verification API How to fetch vehicle owner information from registered number plate? This can help identify stolen vehicles and also to check if a particular person is the claimed owner of a vehicle or not. Our RTO API helps users to verify a vehicle and also checks the RC details in no time. Vehicle RC verification API is a system which helps an enterprise to do vehicle verification by using the registration certificate of any registered vehicle with highest accuracy in record time. The user enters the RC number, then that number is used to fetch the data from the backend & then the data is sent back to your system which can then use it to verify vehicle details. A user can verify vehicle registration either by entering the details present on the registration certificate (RC) or by uploading a photograph of the registration certificate (RC) which then gets scanned by using our AI based RC OCR. Get vehicle info from an Indian registration number How do I get the owner of the vehicle by the registration number with the API for my app - To extract the vehicle owner's name, address, mobile number or contact number from the vehicle's plate or registration number, some information of the vehicle has to be shared, in which the vehicle's registration number partner is also asked many times the chassis or engine number. The number is not easily available with everyone but you do not need to worry, you will also be given a link to the website to find out the chassis number and engine number, then you can easily see the complete information of any vehicle which You won't find it - docs.dhboss.com


GET/POST : PRO_RTO_VEHICLE_INFO

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
vehicleNo String {Enter Value} Yes
apikeyfill String {Enter Value} Yes

Output Parameters Detail
Name Type Description
code integer 200
status string success
response.regNo string AN00E0000
response.rtoCode string AN-01
response.regAuthority string Port Blair DTO, Andaman & Nicobar Island
response.chassis string MALAA51HR8M350000000
response.engine string G4HG8M57000000
response.regDate string 17/9/2008
response.manufacturerMonthYear string 9/2008
response.manufacturerYear string 2008
response.vehicleAge string 16
response.vehicleClass string Motor Car(LMV)
response.puccNumber string NA
response.puccValidUpto string NA
response.presentAddress string NAINI , 70 K/4 UTTARY LOKPUR,, -211008
response.permAddress string NAINI , 70 K/4 UTTARY LOKPUR,, -211008
response.manufacturer string HYUNDAI
response.vehicle string SANTRO XING
response.vehicleType string PrivateCar
response.variant string GL (1086 cc)
response.fuelType string PETROL
response.cubicCapacity string 1086
response.seatCapacity string 5
response.isCommercial string
response.owner string ROHIT SINGH
response.ownerFatherName string SHIV POOJAN SINGH
response.financerName string On Cash
response.insuranceCompanyCode string
response.insuranceCompanyName string United India Insurance Co. Ltd.
response.insurancePolicyNumber string 0311013120P105838886
response.insuranceUpto string 19/10/2021
response.insuranceExpired string
response.pincode string 211008






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

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.dhboss.com/apicall/pro_rto_vehicle_info/',
  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 => 'vehicleNo=DD01AA0000&apikeyfill=5********5
',
 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
?>
API Hit Example Response
{
	"code": 200,
	"status": "success",
	"response": {
		"regNo": "AN00E0000",
		"rtoCode": "AN-01",
		"regAuthority": "Port Blair DTO, Andaman & Nicobar Island",
		"chassis": "MALAA51HR8M350000000",
		"engine": "G4HG8M57000000",
		"regDate": "17/9/2008",
		"manufacturerMonthYear": "9/2008",
		"manufacturerYear": "2008",
		"vehicleAge": "16",
		"vehicleClass": "Motor Car(LMV)",
		"puccNumber": "NA",
		"puccValidUpto": "NA",
		"presentAddress": "NAINI , 70 K/4 UTTARY LOKPUR,, -211008",
		"permAddress": "NAINI , 70 K/4 UTTARY LOKPUR,, -211008",
		"manufacturer": "HYUNDAI",
		"vehicle": "SANTRO XING",
		"vehicleType": "PrivateCar",
		"variant": "GL (1086 cc)",
		"fuelType": "PETROL",
		"cubicCapacity": "1086",
		"seatCapacity": "5",
		"isCommercial": "",
		"owner": "ROHIT SINGH",
		"ownerFatherName": "SHIV POOJAN SINGH",
		"financerName": "On Cash",
		"insuranceCompanyCode": "",
		"insuranceCompanyName": "United India Insurance Co. Ltd.",
		"insurancePolicyNumber": "0311013120P105838886",
		"insuranceUpto": "19/10/2021",
		"insuranceExpired": "",
		"pincode": "211008"
	}
}