Mobile Carrier
The ipdata API supports looking up the Mobile Carrier of an IP Address. Our database currently consists of over 2500 carriers in 234 countries and territories.
We return the Brand Name, eg. Verizon, 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.
Example Request
curl "https://api.ipdata.co/100.128.0.9/carrier?api-key=<<apiKey>>"
ipdata 24.24.24.24 --fields carrier
Sample Response
{
"name": "T-Mobile",
"mcc": "310",
"mnc": "160"
}
You can test this by entering the following IP Addresses in the lookup form on our homepage.
- 69.78.70.144 - Verizon
- 66.102.160.1 - AT&T
- 100.128.0.9 - T-Mobile
- 100.48.0.26 - Sprint
Field | Description |
---|---|
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 |
Updated almost 2 years ago