List & search networks
The main workhorse. Every filter below is optional and they combine with AND; repeated values within one filter combine with OR.
Query parameters
searchstringq.mccstringmncstringplmnstringcountrystringregionstringtadigstringoperatorstringbrandstringtypestring?type=lte_1800,5g_3500.generationstringsortstringinclude_descriptionbooleanlimitintegeroffsetintegerlimit to page.Default: 0orderstringExample request
curl -s "https://mcc-mnc.org/api/v1/networks?country=DE&generation=5G&limit=1"Example response
{
"data": [
{
"id": 122,
"slug": "262_01",
"mcc": "262",
"mnc": "01",
"plmn": "26201",
"code": null,
"operator": "Telekom Deutschland GmbH",
"brand": "Telekom",
"tadig": "DEUD1",
"country": {
"name": "Germany",
"iso": "DE",
"slug": "germany",
"dialCode": null,
"region": { "name": "Europe", "slug": "europe" }
},
"networkTypes": [
{
"name": "LTE",
"slug": "lte_1800",
"frequency": "1800",
"generations": ["4G"]
},
{
"name": "5G",
"slug": "5g_3500",
"frequency": "3500",
"generations": ["5G"]
}
],
"generations": ["2G", "3G", "4G", "5G"],
"url": "https://mcc-mnc.org/networks/262_01",
"createdAt": "2025-04-09T13:26:22.059Z",
"updatedAt": "2025-04-09T13:26:22.059Z"
}
],
"meta": {
"total": 2,
"limit": 1,
"offset": 0,
"count": 1,
"hasMore": true
}
}