The Vehicle Blacklist Check API provides a comprehensive service for verifying if a vehicle is listed in any blacklist or stolen vehicle registry. This API is crucial for organizations involved in vehicle sales, leasing, or insurance, as it helps in preventing fraud and ensuring compliance with legal requirements.
The main endpoint for the Vehicle Blacklist Check API is:
https://api.dhboss.com/apicall/vehicle_blacklist_check_api/
ABC1234
)Here is an example of how to make a request to the Vehicle Blacklist Check API:
GET vehicle_blacklist_check_api/?vehicleId=DD01AA0000&apikeyfill=5********5
The API returns a JSON response indicating whether the vehicle is blacklisted or not:
{
"code": 200,
"status": "success",
"response": {
"status": "Expired",
"regn_no": "DL01AA0000",
"rto_name": "DELHI",
"regn_dt": "09/07/2021",
"owner_name": "Dummy Name",
"owner_sr": "1",
"blacklist_flag": "YES",
"blacklist_status": "Locked by DELHI due to reason Pending Demand/Arr, Difference of fee in temporary registration fee paid at the time of registration and fees applicable as per G.S.R. 240 is due towards this vehicle"
}
}
The Vehicle Blacklist Check API is a valuable tool for verifying vehicle status and preventing fraud. By integrating this API into your system, you can enhance your operations and provide better services to your customers.
- docs.dhboss.comWhat 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.status | string | Expired |
response.regn_no | string | DL01AA0000 |
response.rto_name | string | DELHI |
response.regn_dt | string | 09/07/2021 |
response.owner_name | string | Dummy Name |
response.owner_sr | string | 1 |
response.blacklist_flag | string | YES |
response.blacklist_status | string | Locked by DELHI due to reason Pending Demand/Arr, Difference of fee in temporary registration fee paid at the time of registration and fees applicable as per G.S.R. 240 is due towards this vehicle |
Name | Type | Description |
---|
https://api.dhboss.com/apicall/vehicle_blacklist_check_api/
vehicleId=value&apikeyfill=value
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.dhboss.com/apicall/vehicle_blacklist_check_api/', 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": { "status": "Expired", "regn_no": "DL01AA0000", "rto_name": "DELHI", "regn_dt": "09/07/2021", "owner_name": "Dummy Name", "owner_sr": "1", "blacklist_flag": "YES", "blacklist_status": "Locked by DELHI due to reason Pending Demand/Arr, Difference of fee in temporary registration fee paid at the time of registration and fees applicable as per G.S.R. 240 is due towards this vehicle" } }