API Documentation DH-Boss


Mobile Number Tracker Api - DHBOSS API

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


GET/POST : MOBILE_NUMBER_TRACE

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

Output Parameters Detail
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****






Call API URL
https://api.dhboss.com/apicall/mobile_number_trace/
API Call Request Parameters
mobile_number=value&apikeyfill=value                                                   
API Call Example Request
<?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;
?>
API Hit Example 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****"
}
}