Mobile Number Tracker Api : Mobile Number Tracker - India API Documentation. Get information (series, circle, operator) about any mobile number of India. This API takes mobile number and returns operator name and circle ( State ) of the mobile number, Mobile Number Tracker traces the mobile numbers (of India only) with state, reference cities (exact or nearby city), service provider. Find operator and circle of mobile number 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 |
---|---|---|---|
mobile_number | String | {Enter Value} | Yes |
apikeyfill | String | {Enter Value} | Yes |
Name | Type | Description |
---|---|---|
code | integer | 200 |
status | string | success |
response.telecom | string | Vodafone |
response.circle | string | WEST BENGAL & ANDAMAN NIKOBAR |
response.capital | string | Kolkata |
response.state | string | West Bengal |
response.country | string | India |
response.timezone | string | Asia/Kolkata |
response.phone | string | 787221**** |
https://api.dhboss.com/apicall/mobile_number_trace/
mobile_number=value&apikeyfill=value
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.dhboss.com/apicall/mobile_number_trace/', 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 => 'mobile_number=9999999999&apikeyfill=codeapi', )); $response = curl_exec($curl); curl_close($curl); echo $response; ?>
{ "code": 200, "status": "success", "response": { "telecom": "Vodafone", "circle": "WEST BENGAL & ANDAMAN NIKOBAR", "capital": "Kolkata", "state": "West Bengal", "country": "India", "timezone": "Asia/Kolkata", "phone": "787221****" } }