> For the complete documentation index, see [llms.txt](https://ipforensics.gitbook.io/ipforensics/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ipforensics.gitbook.io/ipforensics/api-response-data/mobile-carrier.md).

# 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

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

| 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 |
