API Documentation DH-Boss


Advance Vehicle or RC Verification Api - DHBOSS API

Advance Vehicle or RC Verification Api - RC Verification API aids in creating a connection between the vehicle and its owner, reducing the risk of fraud. 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 : advance_vehicle_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
vehicleNo String {Enter Value} Yes
apikeyfill String {Enter Value} Yes

Output Parameters Detail
Name Type Description
code integer 200
status string success
response.request_id string aclba6be-dda0-44a0-b36f-050cc1d30129
response.license_plate string DL01AA0000
response.owner_name string DUMMY NAME
response.father_name string DUMMY FATHER NAME
response.is_financed boolean 1
response.financer string DUMMY BANK LTD
response.present_address string 30 - CHHOTI DUNGRI , GANGAPOLE, , CITY, STATE, PIN CODE
response.permanent_address string 30 - CHHOTI DUNGRI , GANGAPOLE, , CITY, STATE, PIN CODE
response.insurance_company string Oriental Insurance Co. Ltd.
response.insurance_policy string 442600/31/2001/1234
response.insurance_expiry string 2024-01-16
response.class string Goods Carrier
response.registration_date string 2023-01-30
response.vehicle_age NULL
response.pucc_upto string 2024-02-09
response.pucc_number string UP01502500000000
response.chassis_number string MC2EGFRC0PAB000000
response.engine_number string E446CDNM0000000
response.fuel_type string DIESEL
response.brand_name string VE COMMERCIAL VEHICLES LTD
response.brand_model string EICHER PRO 2059XP F HSD BS6
response.cubic_capacity string 2960
response.gross_weight string 7490
response.cylinders string 4
response.color string NEW GOLDEN BROWN
response.norms string BHARAT STAGE VI
response.noc_details NULL
response.seating_capacity string 3
response.owner_count string 1
response.tax_upto NULL
response.tax_paid_upto string LTT
response.permit_number string DL2023-NP-00000
response.permit_issue_date NULL
response.permit_valid_from NULL
response.permit_valid_upto string 2028-02-08
response.permit_type string National Permit [GOODS VEHICLE(GVW > 16200)]
response.national_permit_number NULL
response.national_permit_upto NULL
response.national_permit_issued_by NULL
response.rc_status string ACTIVE






Call API URL
https://api.dhboss.com/apicall/advance_vehicle_verification/
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/advance_vehicle_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 => 'vehicleNo=DD01AA0000&apikeyfill=5********5
',
 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
?>
API Hit Example Response
{
  "code": 200,
  "status": "success",
  "response": {
    "request_id": "aclba6be-dda0-44a0-b36f-050cc1d30129",
    "license_plate": "DL01AA0000",
    "owner_name": "DUMMY NAME",
    "father_name": "DUMMY FATHER NAME",
    "is_financed": true,
    "financer": "DUMMY BANK LTD",
    "present_address": "30 - CHHOTI DUNGRI , GANGAPOLE, , CITY, STATE, PIN CODE",
    "permanent_address": "30 - CHHOTI DUNGRI , GANGAPOLE, , CITY, STATE, PIN CODE",
    "insurance_company": "Oriental Insurance Co. Ltd.",
    "insurance_policy": "442600/31/2001/1234",
    "insurance_expiry": "2024-01-16",
    "class": "Goods Carrier",
    "registration_date": "2023-01-30",
    "vehicle_age": null,
    "pucc_upto": "2024-02-09",
    "pucc_number": "UP01502500000000",
    "chassis_number": "MC2EGFRC0PAB000000",
    "engine_number": "E446CDNM0000000",
    "fuel_type": "DIESEL",
    "brand_name": "VE COMMERCIAL VEHICLES LTD",
    "brand_model": "EICHER PRO 2059XP F HSD BS6",
    "cubic_capacity": "2960",
    "gross_weight": "7490",
    "cylinders": "4",
    "color": "NEW GOLDEN BROWN",
    "norms": "BHARAT STAGE VI",
    "noc_details": null,
    "seating_capacity": "3",
    "owner_count": "1",
    "tax_upto": null,
    "tax_paid_upto": "LTT",
    "permit_number": "DL2023-NP-00000",
    "permit_issue_date": null,
    "permit_valid_from": null,
    "permit_valid_upto": "2028-02-08",
    "permit_type": "National Permit [GOODS VEHICLE(GVW > 16200)]",
    "national_permit_number": null,
    "national_permit_upto": null,
    "national_permit_issued_by": null,
    "rc_status": "ACTIVE"
  }
}