Skip to main content
GET
/
plans
/
bandwidth
Python (SDK)
from latitudesh_python_sdk import Latitudesh
import os


with Latitudesh(
    bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:

    res = latitudesh.plans.list_bandwidth(api_version="2023-06-01", page_size=20, page_number=1)

    while res is not None:
        # Handle items

        res = res.next()
{
  "data": [
    {
      "id": "argentina",
      "type": "bandwidth_plan",
      "attributes": {
        "region": "Argentina",
        "locations": [
          "ASH",
          "SAO"
        ],
        "pricing": {
          "usd": {
            "monthly": 8000,
            "yearly": 0
          },
          "brl": {
            "monthly": 4000,
            "yearly": null
          }
        }
      }
    }
  ],
  "meta": {}
}

Authorizations

Authorization
string
header
required

Headers

API-Version
string
default:2023-06-01

Query Parameters

filter[id]
string

The plan ID to filter by

page[size]
integer
default:20

Number of items to return per page

Required range: x >= 1
page[number]
integer
default:1

Page number to return (starts at 1)

Required range: x >= 1

Response

200 - application/vnd.api+json

Success

data
object[]
meta
object
I