📶Mobile Carrier

The IpForensics API supports looking up the Mobile Carrier of an IP Address.

We return the Brand Name, eg. Airtel, the Mobile Country Code (MCC) and the Mobile Network Code (MNC) belonging to the IP Address's mobile carrier.

The data is made available in a carrier object in the API response if the IP Address looked up is determined to belong to a mobile carrier.

Sample Response

"carrier": {
    "name": "Airtel",
    "mcc": "621",
    "mnc": "20"
},
FieldDescription

name

The name of the carrier that owns the IP Address

mcc

The Mobile Country Code of the carrier

mnc

The Mobile Network Code that identifies the carrier

Last updated