Last updated 18 days ago
Returns PLMNs configuration from the Edge.
The IP address of the edge
Successful Response
const response = await fetch('https://api.monogoto.io/api/v1/edge/{edgeIp}/plmns', { method: 'GET', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
{ "plmns": [ { "plmn": "USA 315010", "mcc": "315", "mnc": "010", "rat": "4G" }, { "plmn": "USA_5G 315010", "mcc": "315", "mnc": "010", "rat": "5G", "tac": "000001" } ] }