Get All Edge Nodes (POPs)

Retrieves a comprehensive list of edge nodes (i.e., POPs). This list includes metadata describing each edge node, such as its location and IP blocks.

Although this endpoint returns IP blocks for each POP, the recommended method for retrieving the set of IP blocks that should be whitelisted on your firewall is to use the Get CDN IP Blocks endpoint.

Request

A request to retrieve a list of edge nodes is described below.

HTTP Method Request URI

GET

https://api.transactcdn.com/v2/mcc/customers/AccountNumber/edgenodes

Define the following variable when submitting the above request.

VariableA variable represents a value that must be replaced. A variable consists of either a URL segment (e.g., "0001" in /0001/) or a query string value (e.g., "3" in mediaTypes=3). Description

AccountNumber

Required

Replace this variable with a customer account number. This account number may be found in the upper left-hand corner of the TCC.

Request Headers

This endpointIdentifies a request's connection point to our REST API service. only takes advantage of common request headers.

Request Body

Request body parameters are not required by this endpoint.

Response

The response to the above request includes an HTTP status code, response headers, and a response body.

Status Code

A status code indicates whether the request was successfully performed.

Response Headers

The response for this endpoint only includes standard HTTP response headers. View common response headers.

Response Body

The response body for a successful request contains the following response parameters for each edge node (i.e., POP) returned by this endpoint:

Name Data Type Description

Code

String

Identifies an edge node by its three letter abbreviation.

Continent

String

Indicates the continent on which the edge node is located.

City

String

Indicates the city where the edge node is located.

V4

Array

Lists each public IP block (IPv4) associated with an edge node.

IPAddressRange

 

This tag represents a single IP block (IPv4) associated with an edge node.

StartIp

String

V4 array

Indicates the start IP address of the IP block (IPv4) associated with an edge node.

EndIp

String

V4 array

Indicates the end IP address of the IP block (IPv4) associated with an edge node.

SubnetMask

String

V4 array

Indicates the edge node's IPv4 subnet mask. A routing prefix is used to identify a subnet mask.

V6

Array

Lists each public IP block (IPv4) associated with an edge node.

IPAddressRange

 

This tag represents a single IP block (IPv6) associated with an edge node.

StartIp

String

V6 array

Indicates the start IP address of the IP block (IPv6) associated with an edge node.

EndIp

String

V6 array

Indicates the end IP address of the IP block (IPv6) associated with an edge node.

SubnetMask

String

V6 array

Indicates the edge node's IPv6 subnet mask. A routing prefix is used to identify a subnet mask.

Errors

The response body for an unsuccessful request may contain an error parameter that provides additional information.

View common error messages.

Sample Request and Response (JSON)

A sample JSON request is shown below.

GET https://api.transactcdn.com/v2/mcc/customers/0001/edgenodes HTTP/1.1

Authorization: TOK:12345678-1234-1234-1234-1234567890ab

Accept: application/json

Host:api.transactcdn.com

A sample JSON response is shown below.

HTTP/1.1 200 OK

Cache-Control: private

Content-Type: application/json; charset=utf-8

Date: Thu, 15 Apr 2021 12:00:00 GMT

Content-Length: 8196

[{
		"Code" : "HHZ",
		"Continent" : "Asia",
		"City" : "Hong Kong",
		"V4" : [{
				"StartIp" : "192.30.19.0",
				"EndIp" : "192.30.19.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:601A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:601A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "SIZ",
		"Continent" : "Asia",
		"City" : "Singapore",
		"V4" : [{
				"StartIp" : "192.30.21.0",
				"EndIp" : "192.30.21.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:600A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:600A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "NRZ",
		"Continent" : "Asia",
		"City" : "Tokyo",
		"V4" : [{
				"StartIp" : "192.30.20.0",
				"EndIp" : "192.30.20.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:602A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:602A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "SYZ",
		"Continent" : "Australia",
		"City" : "Sydney",
		"V4" : [{
				"StartIp" : "192.30.22.0",
				"EndIp" : "192.30.22.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:603A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:603A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "AMZ",
		"Continent" : "Europe",
		"City" : "Amsterdam",
		"V4" : [{
				"StartIp" : "192.30.12.0",
				"EndIp" : "192.30.12.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:504B:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:504B:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "AMY",
		"Continent" : "Europe",
		"City" : "Amsterdam",
		"V4" : [{
				"StartIp" : "192.30.11.0",
				"EndIp" : "192.30.11.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:504A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:504A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "FCZ",
		"Continent" : "Europe",
		"City" : "Frankfurt",
		"V4" : [{
				"StartIp" : "192.30.14.0",
				"EndIp" : "192.30.14.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:507A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:507A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "LHZ",
		"Continent" : "Europe",
		"City" : "London",
		"V4" : [{
				"StartIp" : "192.30.15.0",
				"EndIp" : "192.30.15.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:501A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:501A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "MAZ",
		"Continent" : "Europe",
		"City" : "Madrid",
		"V4" : [{
				"StartIp" : "192.30.16.0",
				"EndIp" : "192.30.16.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:500A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:500A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "ORZ",
		"Continent" : "Europe",
		"City" : "Paris",
		"V4" : [{
				"StartIp" : "192.30.17.0",
				"EndIp" : "192.30.17.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:503A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:503A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "ARZ",
		"Continent" : "Europe",
		"City" : "Stockholm",
		"V4" : [{
				"StartIp" : "192.30.13.0",
				"EndIp" : "192.30.13.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:506A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:506A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "VIZ",
		"Continent" : "Europe",
		"City" : "Vienna",
		"V4" : [{
				"StartIp" : "192.30.18.0",
				"EndIp" : "192.30.18.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:505A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:505A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "DCZ",
		"Continent" : "North America",
		"City" : "Ashburn",
		"V4" : [{
				"StartIp" : "192.30.7.0",
				"EndIp" : "192.30.7.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:420A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:420A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "ATZ",
		"Continent" : "North America",
		"City" : "Atlanta",
		"V4" : [{
				"StartIp" : "192.30.9.0",
				"EndIp" : "192.30.9.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:422A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:422A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "MDZ",
		"Continent" : "North America",
		"City" : "Chicago",
		"V4" : [{
				"StartIp" : "192.30.5.0",
				"EndIp" : "192.30.5.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:421A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:421A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "FTZ",
		"Continent" : "North America",
		"City" : "Dallas",
		"V4" : [{
				"StartIp" : "192.30.4.0",
				"EndIp" : "192.30.4.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:410A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:410A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "CPZ",
		"Continent" : "North America",
		"City" : "Los Angeles",
		"V4" : [{
				"StartIp" : "192.30.0.0",
				"EndIp" : "192.30.0.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:400A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:400A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "ISL",
		"Continent" : "North America",
		"City" : "Los Angeles (CSTG)",
		"V4" : [{
				"StartIp" : "192.30.1.0",
				"EndIp" : "192.30.1.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:400B:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:400B:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "MIZ",
		"Continent" : "North America",
		"City" : "Miami",
		"V4" : [{
				"StartIp" : "192.30.10.0",
				"EndIp" : "192.30.10.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:423A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:423A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "JFZ",
		"Continent" : "North America",
		"City" : "New York",
		"V4" : [{
				"StartIp" : "192.30.6.0",
				"EndIp" : "192.30.6.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:424A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:424A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "EWZ",
		"Continent" : "North America",
		"City" : "New York",
		"V4" : [{
				"StartIp" : "192.30.8.0",
				"EndIp" : "192.30.8.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:424b:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:424b:ffff:ffff:ffff:ffff:ffff",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "SJZ",
		"Continent" : "North America",
		"City" : "San Jose",
		"V4" : [{
				"StartIp" : "192.30.2.0",
				"EndIp" : "192.30.2.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:401A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:401A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}, {
		"Code" : "SEZ",
		"Continent" : "North America",
		"City" : "Seattle",
		"V4" : [{
				"StartIp" : "192.30.3.0",
				"EndIp" : "192.30.3.255",
				"SubnetMask" : "24"
			}
		],
		"V6" : [{
				"StartIp" : "2606:2800:402A:0000:0000:0000:0000:0000",
				"EndIp" : "2606:2800:402A:FFFF:FFFF:FFFF:FFFF:FFFF",
				"SubnetMask" : "48"
			}
		]
	}
]

Sample Request and Response (XML)

A sample XML request is shown below.

GET https://api.transactcdn.com/v2/mcc/customers/0001/edgenodes HTTP/1.1

Authorization: TOK:12345678-1234-1234-1234-1234567890ab

Accept: application/xml

Host:api.transactcdn.com

A sample XML response is shown below.

HTTP/1.1 200 OK

Cache-Control: private

Content-Type: application/xml; charset=utf-8

Date: Thu, 15 Apr 2021 12:00:00 GMT

Content-Length: 11779

<ArrayOfEdgeNodeGetResult xmlns="http://www.whitecdn.com/schemas/apiservices/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
	<EdgeNodeGetResult>
		<Code>HHZ</Code>
		<Continent>Asia</Continent>
		<City>Hong Kong</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.19.0</StartIp>
				<EndIp>192.30.19.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:601A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:601A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>SIZ</Code>
		<Continent>Asia</Continent>
		<City>Singapore</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.21.0</StartIp>
				<EndIp>192.30.21.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:600A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:600A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>NRZ</Code>
		<Continent>Asia</Continent>
		<City>Tokyo</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.20.0</StartIp>
				<EndIp>192.30.20.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:602A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:602A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>SYZ</Code>
		<Continent>Australia</Continent>
		<City>Sydney</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.22.0</StartIp>
				<EndIp>192.30.22.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:603A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:603A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>AMZ</Code>
		<Continent>Europe</Continent>
		<City>Amsterdam</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.12.0</StartIp>
				<EndIp>192.30.12.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:504B:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:504B:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>AMY</Code>
		<Continent>Europe</Continent>
		<City>Amsterdam</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.11.0</StartIp>
				<EndIp>192.30.11.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:504A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:504A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>FCZ</Code>
		<Continent>Europe</Continent>
		<City>Frankfurt</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.14.0</StartIp>
				<EndIp>192.30.14.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:507A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:507A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>LHZ</Code>
		<Continent>Europe</Continent>
		<City>London</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.15.0</StartIp>
				<EndIp>192.30.15.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:501A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:501A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>MAZ</Code>
		<Continent>Europe</Continent>
		<City>Madrid</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.16.0</StartIp>
				<EndIp>192.30.16.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:500A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:500A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>ORZ</Code>
		<Continent>Europe</Continent>
		<City>Paris</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.17.0</StartIp>
				<EndIp>192.30.17.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:503A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:503A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>ARZ</Code>
		<Continent>Europe</Continent>
		<City>Stockholm</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.13.0</StartIp>
				<EndIp>192.30.13.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:506A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:506A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>VIZ</Code>
		<Continent>Europe</Continent>
		<City>Vienna</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.18.0</StartIp>
				<EndIp>192.30.18.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:505A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:505A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>DCZ</Code>
		<Continent>North America</Continent>
		<City>Ashburn</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.7.0</StartIp>
				<EndIp>192.30.7.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:420A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:420A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>ATZ</Code>
		<Continent>North America</Continent>
		<City>Atlanta</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.9.0</StartIp>
				<EndIp>192.30.9.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:422A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:422A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>MDZ</Code>
		<Continent>North America</Continent>
		<City>Chicago</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.5.0</StartIp>
				<EndIp>192.30.5.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:421A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:421A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>FTZ</Code>
		<Continent>North America</Continent>
		<City>Dallas</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.4.0</StartIp>
				<EndIp>192.30.4.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:410A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:410A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>CPZ</Code>
		<Continent>North America</Continent>
		<City>Los Angeles</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.0.0</StartIp>
				<EndIp>192.30.0.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:400A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:400A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>ISL</Code>
		<Continent>North America</Continent>
		<City>Los Angeles (CSTG)</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.1.0</StartIp>
				<EndIp>192.30.1.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:400B:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:400B:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>MIZ</Code>
		<Continent>North America</Continent>
		<City>Miami</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.10.0</StartIp>
				<EndIp>192.30.10.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:423A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:423A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>JFZ</Code>
		<Continent>North America</Continent>
		<City>New York</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.6.0</StartIp>
				<EndIp>192.30.6.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:424A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:424A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>EWZ</Code>
		<Continent>North America</Continent>
		<City>New York</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.8.0</StartIp>
				<EndIp>192.30.8.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:424b:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:424b:ffff:ffff:ffff:ffff:ffff</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>SJZ</Code>
		<Continent>North America</Continent>
		<City>San Jose</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.2.0</StartIp>
				<EndIp>192.30.2.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:401A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:401A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
	<EdgeNodeGetResult>
		<Code>SEZ</Code>
		<Continent>North America</Continent>
		<City>Seattle</City>
		<V4>
			<IPAddressRange>
				<StartIp>192.30.3.0</StartIp>
				<EndIp>192.30.3.255</EndIp>
				<SubnetMask>24</SubnetMask>
			</IPAddressRange>
		</V4>
		<V6>
			<IPAddressRange>
				<StartIp>2606:2800:402A:0000:0000:0000:0000:0000</StartIp>
				<EndIp>2606:2800:402A:FFFF:FFFF:FFFF:FFFF:FFFF</EndIp>
				<SubnetMask>48</SubnetMask>
			</IPAddressRange>
		</V6>
	</EdgeNodeGetResult>
</ArrayOfEdgeNodeGetResult>