Skip to main content

Get Available Bandwidths

GET 
/networking/vxc_bandwidths

Get a list of available bandwidths for VXC creation

Request

Query Parameters

    filter[site_id] string

    The id of the site you want to filter on

    filter[cloud_provider] string

    The cloud provider you want to filter on

    filter[cloud_region] string

    The cloud region you want to filter on

    filter[local] boolean

    Whether you want to see only local regions

Responses

200: Successful response

401: Authentication error

403: Authorization error

Request samples


curl -L 'https://api.telnyx.com/networking/vxc_bandwidths' \
-H 'Accept: application/json'

Response samples


{
"data": [
{
"site_id": "string",
"cloud_provider": "string",
"cloud_region": "string",
"local": true,
"bandwidths": [
{
"bandwidth_mbps": 0,
"currency": "string",
"amount": 0
}
],
"record_type": "string"
}
],
"meta": {
"total_pages": 13,
"total_results": 13,
"page_number": 3,
"page_size": 1
}
}