GET
/
plans
curl --request GET \
  --url https://api.bytio.com/v1/plans \
  --header 'X-API-KEY: <api-key>'
{
  "status": "ok",
  "plans": [
    {
      "plan_id": "<string>",
      "is_pay_as_you_go": true,
      "name": "Starter",
      "minimum_monthly_spend_cents": 123,
      "datacenter": {
        "shared": {
          "per_gigabyte_cents": 123,
          "per_connection_cents_monthly": 123
        },
        "reserved": {
          "per_gigabyte_cents": 123,
          "per_connection_cents_monthly": 123,
          "ip_pool_per_ip_cents_monthly": 123,
          "exclusivity_all_domains_per_ip_cents_monthly": 123,
          "exclusivity_per_domain_per_ip_cents_monthly": 123
        }
      },
      "mobile": {
        "shared": {
          "per_gigabyte_cents": 123,
          "per_connection_cents_monthly": 123
        }
      },
      "residential": {
        "shared": {
          "per_gigabyte_cents": 123
        }
      }
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

Response

200
application/json
Success
status
enum<string>
Available options:
ok
plans
object[]