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. 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. - 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 |
---|---|---|---|
vehicleId | String | {Enter Value} | Yes |
apikeyfill | String | {Enter Value} | Yes |
Name | Type | Description |
---|---|---|
code | integer | 200 |
status | string | success |
response.isDataFound | string | 1 |
response.rcStatus | string | Fitness Expired |
response.registration_No | string | DL01AA0000 |
response.registration_date | string | 2020-07-27 |
response.owner_Name | string | Dummy Name |
response.chassis_number | string | MBHCZC63SLG5XXXXX |
response.engine_number | string | K12MP12XXXXX |
response.brand_name | string | |
response.brand_model | string | MARUTI SWIFT VXI |
response.fuelType | string | Petrol |
response.rto_code | string | DL-24 |
response.fitnessUpto | string | 2035-07-26 |
response.financer | string | BANK OF BARODA |
response.financed | string | true |
response.insurance_company | string | Royal Sundaram General Insurance Co. Ltd |
response.insurance_policy | string | MOP6760000000000 |
response.insurance_expiry | string | 2024-07-21 |
response.manufacturingDate | string | 7/2020 |
response.registeringAuthority | string | PATAN, Delhi |
response.roadTaxPaidUpto | string | 2035-07-26 |
response.seat_capacity | string | 5 |
response.cubic_capacity | string | |
response.vehicleClass | string | Motor Car(LMV) |
response.puccUpto | string | 2022-12-05 |
response.permitValidity | string | |
response.permittype | string | |
response.normsType | string | BHARAT STAGE III |
response.bodyType | string | SOLO |
https://api.dhboss.com/apicall/rto_vehicle_info/
vehicleId=value&apikeyfill=value
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.dhboss.com/apicall/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 => 'vehicleId=DD01AA0000&apikeyfill=5********5 ', )); $response = curl_exec($curl); curl_close($curl); echo $response; ?>
{ "code": 200, "status": "success", "response": { "isDataFound": "1", "rcStatus": "Fitness Expired", "registration_No": "DL01AA0000", "registration_date": "2020-07-27", "owner_Name": "Dummy Name", "chassis_number": "MBHCZC63SLG5XXXXX", "engine_number": "K12MP12XXXXX", "brand_name": "", "brand_model": "MARUTI SWIFT VXI", "fuelType": "Petrol", "rto_code": "DL-24", "fitnessUpto": "2035-07-26", "financer": "BANK OF BARODA", "financed": "true", "insurance_company": "Royal Sundaram General Insurance Co. Ltd", "insurance_policy": "MOP6760000000000", "insurance_expiry": "2024-07-21", "manufacturingDate": "7/2020", "registeringAuthority": "PATAN, Delhi", "roadTaxPaidUpto": "2035-07-26", "seat_capacity": "5", "cubic_capacity": "", "vehicleClass": "Motor Car(LMV)", "puccUpto": "2022-12-05", "permitValidity": "", "permittype": "", "normsType": "BHARAT STAGE III", "bodyType": "SOLO" } }