Mobile Gateway Object

The Mobile Gateway (mobile_gateway ) object is provided on IP addresses acting as 3GPP gateways. This information is available through both the IP API and the Mobile Gateway Datasets.

A single IP address can host mobile gateway services from multiple providers. This information is provided in the mobile_gateway_service_list attribute of the JSON object. In our example JSON below, you can see mobile services from two brands on a single IP address: Fido Mobile and Rogers.

Mobile Gateway Info
MCC
530
MNC
05
Service
WiFi Calling Gateway
Host
epdg.epc.mnc005.mcc530.pub.3gppnetwork.org
Brand
Spark Icon Spark

Mobile Gateway Object Overview

application

object - Application Object
The standard application object for the Mobile Gateway application.

mobile_gateway_service_list

array
A list of mobile gateway service objects. See below.

Mobile Gateway Object - JSON Overview

"mobile_gateway": {
  "application": { Application Attributes },
  "mobile_gateway_service_list": [
     { Mobile Gateway Service Object },
     { Mobile Gateway Service Object },
     ...
   ]
}

Mobile Gateway Service Attributes

mcc

string
MCC - Mobile Country Code - is a unique three-digit code identifying a mobile network's country of origin in cellular communication systems. Note: the code can be prefixed with zeros, so the value is a string, not an integer.

mnc

string
MNC - Mobile Network Code - is a unique identifier, typically two or three digits, that distinguishes a specific mobile network within a country. Note: the code can be prefixed with zeros, so the value is a string, not an integer.

hostname

string
The primary hostname associated with the mobile gateway.

service

string
The mobile service associated with the gateway.
AES
Authentication
BSF
Binding Support Function
COTA
Channel Occupancy Time Adaptation
EPC
Evolved Packet Core
IMS
IP Multimedia Subsystem
RCS
Rich Communication Services
SES
Service Exposure Server
WSS
Dual Wavelength Selective Switch
H-SLP
Home SUPL Location Platform

country

string
The country associated with the mobile gateway. This is not necessarily the IP address's geolocation but the mobile service's country of origin.

continent

string
The continent associated with the mobile gateway. This is not necessarily the IP address's geolocation but the mobile service's continent of origin.

entity

object - Entity Object
The entity object represents the mobile brand associated with the service.

Mobile Gateway - JSON Example

"mobile_gateway": {
  "application": {
    "id": 11228,
    "tag": "3gpp-network",
    "label": "Mobile Gateway",
    "description": "The 3GPP Mobile Gateway...",
    "home_page": {
      "url": "https://www.3gpp.org",
      "text": "Mobile Gateway"
    },
    "category": {
      "id": 27,
      "tag": "technology",
      "label": "Technology"
    },
    "favicon": "https://static.netify.ai/...",
    "icon": "https://static.netify.ai/...",
    "logo": "https://static.netify.ai/...",
    "favicon_source": "app",
    "icon_source": "app",
    "logo_source": "app"
  },
  "mobile_gateway_service_list": [
    {
      "mcc": "302",
      "mnc": "370",
      "hostname": "epdg.epc.mnc370.mcc302.pub...",
      "service": {
        "code": "epc",
        "label": "Evolved Packet Core"
      },
      "country": {
        "code": "CA",
        "label": "Canada"
      },
      "continent": {
        "code": "NA",
        "label": "North America"
      },
      "entity": {
        "id": 11708,
        "tag": "fido",
        "label": "Fido Mobile",
        "description": "Fido Mobile ...",
        "home_page": {
          "url": "https://www.fido.ca",
          "text": "Fido Mobile"
        },
        "category": {
          "id": 37,
          "tag": "telco",
          "label": "ISP/Telco"
        },
        "favicon": "https://static.netify.ai/...",
        "icon": "https://static.netify.ai/...",
        "logo": "https://static.netify.ai/...",
        "favicon_source": "app",
        "icon_source": "app",
        "logo_source": "default"
      }
    },
    {
      "mcc": "302",
      "mnc": "720",
      "hostname": "epdg.epc.mnc720.mcc302.pub...",
      "service": {
        "code": "epc",
        "label": "Evolved Packet Core"
      },
      "country": {
        "code": "CA",
        "label": "Canada"
      },
      "continent": {
        "code": "NA",
        "label": "North America"
      },
      "entity": {
        "id": 10313,
        "tag": "rogers",
        "label": "Rogers",
        "description": "Rogers Communications...",
        "home_page": {
          "url": "https://www.rogers.com",
          "text": "Rogers"
        },
        "category": {
          "id": 37,
          "tag": "telco",
          "label": "ISP/Telco"
        },
        "favicon": "https://static.netify.ai/...",
        "icon": "https://static.netify.ai/...",
        "logo": "https://static.netify.ai/...",
        "favicon_source": "app",
        "icon_source": "app",
        "logo_source": "app"
      }
    }
  ]
}