API Documentation DH-Boss


Vehicle RC Verification API - DHBOSS API

API DH Boss My Service, Vehicle Information Api - the trusted and reliable API service provider company in India providing API for vehicle information in India at reasonable and economical cost. Our vehicle RC no. verification API allows a business correspondent to verify and update the RC of any two-wheeler or 3-wheeler or 4-wheeler vehicle for their customers. With the increase in forgery cases, identity verification of every individual has become essential. Hence, the government and industry regulations ensure that they carry forward their business with proper identity authentication of their employees and customers to prevent any kind of fraud or theft. The RC of ay vehicle holds basic information about the vehicle like vehicle number and vehicle owner information. The RC verification API ensures that the vehicle is registered with the Regional Transport Office and legalizes the owner. We also provide white labels and portal development services integrated with vehicle RC number verification API. A business correspondent or an agent can easily utilize our portals and white labels with their business’s name and logo which helps to increase their brand awareness. - docs.dhboss.com


GET/POST : RC_VERIFICATION_CHECK

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

Output Parameters Detail
Name Type Description
name string Vehicle Number Details
type string Success
message string Vehicle Details fetched successfully
status string 200
detail.registeredPlace string Delhi, Delhi ARTO, Delhi
detail.pucUpTo string
detail.rcStatus string Fitness Expired
detail.unladenWt string 377
detail.hypothecation boolean
detail.vehicleCategory string 3WT
detail.fuelType NULL
detail.rawFuelType string PETROL/LPG
detail.registeredAt string 2013-03-01
detail.color string ECO GREEN
detail.rcNormsDesc string
detail.engineNo string TBP2MAP30XXXXX
detail.chassisNo string MBX0002DFPB6XXXXX
detail.chassisNoFull string MBX0002DFPB60000000
detail.insuranceCompany string Future Generali General Insurance Co. Ltd.
detail.insuranceUpTo string 2020-02-15
detail.rtoNocIssued string false
detail.manufacturingMonthYr string 0/2013
detail.fitnessUpTo string 2021-02-17
detail.taxUpTo string 2028-02-22
detail.vehicleClassDesc string Three Wheeler (Passenger)(3WT)
detail.registrationNumber string DL00AA0000
detail.modelImageUrl NULL
detail.brand NULL
detail.model NULL
detail.year NULL
detail.regn_year string 2013
detail.states.state_id string 01
detail.states.state_code string DL
detail.states.state_name string DELHI
detail.RTO.rto_detail_id integer 695
detail.RTO.rto_code string DL-01
detail.rc_model string APE CITY LPG
detail.full_details NULL
detail.rc_owner_name string
detail.rc_owner_name_masked string M*H*M*E* *H*K*L
detail.rc_vh_class_desc string Three Wheeler (Passenger)(3WT)
detail.rc_owner_sr string 2
detail.ds_details NULL






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

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.dhboss.com/apicall/rc_verification_check/',
  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 => 'vehicleId=AA01AA1234&apikeyfill=5452455
',
 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
?>
API Hit Example Response
{
  "name": "Vehicle Number Details",
  "type": "Success",
  "message": "Vehicle Details fetched successfully",
  "status": "200",
  "detail": {
    "registeredPlace": "Delhi, Delhi ARTO, Delhi",
    "pucUpTo": "",
    "rcStatus": "Fitness Expired",
    "unladenWt": "377",
    "hypothecation": false,
    "vehicleCategory": "3WT",
    "fuelType": null,
    "rawFuelType": "PETROL/LPG",
    "registeredAt": "2013-03-01",
    "color": "ECO GREEN",
    "rcNormsDesc": "",
    "engineNo": "TBP2MAP30XXXXX",
    "chassisNo": "MBX0002DFPB6XXXXX",
    "chassisNoFull": "MBX0002DFPB60000000",
    "insuranceCompany": "Future Generali General Insurance  Co. Ltd.",
    "insuranceUpTo": "2020-02-15",
    "rtoNocIssued": "false",
    "manufacturingMonthYr": "0/2013",
    "fitnessUpTo": "2021-02-17",
    "taxUpTo": "2028-02-22",
    "vehicleClassDesc": "Three Wheeler (Passenger)(3WT)",
    "registrationNumber": "DL00AA0000",
    "modelImageUrl": null,
    "brand": null,
    "model": null,
    "year": null,
    "regn_year": "2013",
    "states": {
      "state_id": "01",
      "state_code": "DL",
      "state_name": "DELHI"
    },
    "RTO": {
      "rto_detail_id": 695,
      "rto_code": "DL-01"
    },
    "rc_model": "APE CITY LPG",
    "full_details": null,
    "rc_owner_name": "",
    "rc_owner_name_masked": "M*H*M*E* *H*K*L",
    "rc_vh_class_desc": "Three Wheeler (Passenger)(3WT)",
    "rc_owner_sr": "2",
    "ds_details": null
  }
}