Mobile Network & Operator Details
Get the telecom operator, circle, and network type for any Indian mobile number. Useful for routing, fraud detection, and analytics.
curl -X GET "https://production.deepvue.tech/v1/mobile-intelligence/mobile-to-network-details?mobile_number=example_string" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
-H "x-api-key: YOUR_API_KEY"
import requests
import json
url = "https://production.deepvue.tech/v1/mobile-intelligence/mobile-to-network-details?mobile_number=example_string"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)",
"x-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://production.deepvue.tech/v1/mobile-intelligence/mobile-to-network-details?mobile_number=example_string", {
method: "GET",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)",
"x-api-key": "YOUR_API_KEY"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://production.deepvue.tech/v1/mobile-intelligence/mobile-to-network-details?mobile_number=example_string", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN (JWT)")
req.Header.Set("x-api-key", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://production.deepvue.tech/v1/mobile-intelligence/mobile-to-network-details?mobile_number=example_string')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['Authorization'] = 'Bearer YOUR_API_TOKEN (JWT)'
request['x-api-key'] = 'YOUR_API_KEY'
response = http.request(request)
puts response.body
{
"code": 200,
"timestamp": 1738046819167,
"transaction_id": "ac3991d85a2b4553a40ebf9bf98fe034",
"sub_code": "SUCCESS",
"message": "Network Details fetched successfully",
"data": {
"currentNetworkName": "Airtel",
"currentNetworkRegion": "Karnataka",
"currentNetworkcountryCodeIso2": "91",
"imsi": "400000000000000",
"isPhoneReachable": true,
"isValidPhoneNumber": true,
"numberBillingType": "prepaid",
"numberHasPortingHistory": true,
"portedFromNetworkName": "BSNL",
"portedFromNetworkRegion": "Karnataka",
"portedFromNetworkcountryCodeIso2": "91",
"roamingNetworkcountryCodeIso2": "",
"roamingNetworkName": "",
"roamingNetworkRegion": "",
"roaming": false
}
}
{
"detail": "Not authenticated"
}
{
"detail": "Not a valid token"
}
{
"code": 422,
"timestamp": 1738007802374,
"transaction_id": "7d1d1f4bd8054139af42d0f21dfa8fec",
"sub_code": "INVALID_MOBILE_NUMBER",
"message": "Invalid Mobile Number Pattern"
}
{
"code": 500,
"timestamp": null,
"transaction_id": "string",
"sub_code": "INTERNAL_SERVER_ERROR",
"message": "Internal Server Error"
}
{
"code": null,
"timestamp": null,
"transaction_id": "string",
"message": "Source Unavailable"
}
/v1/mobile-intelligence/mobile-to-network-details
ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Request Preview
Response
Response will appear here after sending the request
Authentication
Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Query Parameters
Responses
Overview
This API retrieves comprehensive network information associated with a given phone number, enabling businesses to validate mobile subscriber details during KYC and verification workflows.
Key information provided
The API returns detailed intelligence about a mobile number, including:
- Current network operator name and regional location
- Country code identification (ISO2 format)
- IMSI (International Mobile Subscriber Identity) data
- Phone reachability status and validity confirmation
- Billing classification (prepaid/postpaid)
- Porting history and previous network details
- Active roaming status and roaming network information
Last updated 4 weeks ago
Built with Documentation.AI