Skip to main content

List network coverage locations

GET 
/network_coverage

List all locations and the interfaces that region supports

Request

Query Parameters

    page[number] integer

    Possible values: >= 1

    Default value: 1

    The page number to load

    page[size] integer

    Possible values: >= 1 and <= 250

    Default value: 20

    The size of the page

    filters[available_services][contains] Available service

    Possible values: [cloud_vpn, private_wireless_gateway, virtual_cross_connect]

    The region of associated location to filter on.

    filter[location.region] string

    The region of associated location to filter on.

    filter[location.site] string

    The site of associated location to filter on.

    filter[location.pop] string

    The POP of associated location to filter on.

    filter[location.code] string

    The code of associated location to filter on.

Responses

200: Successful response

default: Unexpected error

Request samples


curl -L 'https://api.telnyx.com/v2/network_coverage' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"data": [
{
"record_type": "network_coverage",
"location": {
"region": "AMER",
"site": "ORD",
"pop": "CH1",
"code": "chicago-il",
"name": "Chicago IL, US"
},
"available_services": [
"cloud_vpn"
]
}
],
"meta": {
"total_pages": 3,
"total_results": 55,
"page_number": 2,
"page_size": 25
}
}