Skip to main content
GET
/
plans
/
bandwidth
Typescript (SDK)
import { Latitudesh } from "latitudesh-typescript-sdk";

const latitudesh = new Latitudesh({
  bearer: process.env["LATITUDESH_BEARER"] ?? "",
});

async function run() {
  const result = await latitudesh.plans.getBandwidth({});

  for await (const page of result) {
    console.log(page);
  }
}

run();
{
  "data": [
    {
      "id": "chile-54",
      "type": "bandwidth_plan",
      "attributes": {
        "region": "Chile 54",
        "locations": [
          "ASH",
          "SAO"
        ],
        "pricing": {
          "usd": {
            "monthly": 5000,
            "yearly": 6000
          },
          "brl": {
            "monthly": 8000,
            "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