RTO Code Search By City Name - Find list of RTO state code and state names below, where each state shows the number of RTO offices exist in particular state, All India RTO Code Number State-wise List PDF and Excel Download. ... MP RTO Vehicle Registration Owner Search ... RTO Code Number, RTO Office Name api, Search For RTO vehicle owner details With us. Find RTO vehicle owner details. Search Here. Relevant Results. Get Latest Info. More Relevant. Awesome Results. Updated Info. Services: Search Services, Web Results, Result Pages, Popular Searches. Best RTO Code List Search Using Any City Name Api. - 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 |
---|---|---|---|
city_name | String | {Enter Value} | Yes |
State_name | String | {Enter Value} | Yes |
apikeyfill | String | {Enter Value} | Yes |
Name | Type | Description |
---|---|---|
code | integer | 200 |
status | string | success |
response.message | string | Record Found 1 |
response.rto_code | string | BR01 |
response.rto_office | string | DTOPATNA |
response.address | string | 4THFLOORBISCOMANBHAWANCHAJJUBAGH,PATNA,BIHAR-800001 |
response.email | string | |
response.phone_no | string | 612-2237131 |
response.pin_code | string | 800001 |
response.citycode | string | 01 |
response.city | string | PATNA |
response.shortstate | string | BR |
response.state | string | BIHAR |
https://api.dhboss.com/apicall/rto_info_by_city/
city_name=value&State_name=value&apikeyfill=value
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.dhboss.com/apicall/rto_info_by_city/', 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 => 'city_name=DELHI&State_name=DELHI&apikeyfill=api', )); $response = curl_exec($curl); curl_close($curl); echo $response; ?>
{ "code": 200, "status": "success", "response": { "message": "Record Found 1", "rto_code": "BR01", "rto_office": "DTOPATNA", "address": "4THFLOORBISCOMANBHAWANCHAJJUBAGH,PATNA,BIHAR-800001", "email": "", "phone_no": "612-2237131", "pin_code": "800001", "citycode": "01", "city": "PATNA", "shortstate": "BR", "state": "BIHAR" } }