Network Resource
Access cellular networks to which Super SIMs can connect
Last updated
Was this helpful?
Access cellular networks to which Super SIMs can connect
Last updated
Was this helpful?
A Network resource represents a cellular network to which Super SIMs can connect.
You can obtain a list of all available mobile operator networks, provided as an array of Network resources, from this endpoint:
Each Network resource will have a sid
property that is used by KORE as the primary identifier. This is a unique identifier to KORE. In the world of cellular connectivity, networks are often referred to by their MCC (mobile country code) and MNC (mobile network code). Networks often have multiple MCC-MNCs associated with it. You can look these up on various websites such as .
A Network resource's identifiers
property is an array of objects that contain identifiers for all of the public land mobile networks (PLMNs) that are represented by a Network resource. Each object in the array will have these properties:
mcc
The Mobile Country Code (MCC) is the unique ID that identifies the mobile operator network's home country.
mnc
The Mobile Network Code (MNC) is the unique ID that identifies the mobile operator network.
To filter down the list of networks to just those available in a given country, provide the ISO2 country code (e.g., "US" for the United States) as the IsoCountry
query parameter.
You can use the a cellular network's MCC-MNC to search for a specific network. For example, one of AT&T US' MCC-MNCs is 310-410. You can use the Mcc
and Mnc
query parameters to search for the Network resource which represents AT&T US.
Retrieve a list of Network resources.
The ISO country code of the Network resources to read.
{"value":"US"}
The 'mobile country code' of a country. Network resources with this mcc
in their identifiers
will be read.
{"value":"310"}
The 'mobile network code' of a mobile operator network. Network resources with this mnc
in their identifiers
will be read.
{"value":"410"}
How many resources to return in each list page. The default is 50, and the maximum is 1000.
The page index. This value is simply for client state.
The page token. This is provided by the API.
Fetch a Network resource.
The SID of the Network resource to fetch.
^HW[0-9a-fA-F]{32}$
Before you can make requests to this resource, you must have a valid bearer token. Review our API to learn how to generate a token. Here's a curl example on how to define your access token in a header:
The examples below do not show the required Authorization
header due to a bug. We're working on fixing that. In the meantime, be sure to include that in all of your requests.