Skip to main content
GET
/
organizations
/
{organization}
/
cluster-size-skus
List available cluster sizes
curl --request GET \
  --url https://api.planetscale.com/v1/organizations/{organization}/cluster-size-skus \
  --header 'Authorization: <api-key>'
[
  {
    "name": "<string>",
    "display_name": "<string>",
    "cpu": "<string>",
    "storage": 123,
    "ram": 123,
    "metal": true,
    "enabled": true,
    "provider": "<string>",
    "default_vtgate": "<string>",
    "default_vtgate_rate": 123,
    "sort_order": 123,
    "architecture": "<string>",
    "development": true,
    "production": true,
    "replica_rate": 123,
    "rate": 123
  }
]

Authorizations

Authorization
string
header
required

Path Parameters

organization
string
required

The name of the organization

Query Parameters

engine
enum<string>

The database engine to filter by. Defaults to 'mysql'.

Available options:
mysql,
postgresql
rates
boolean

Whether to include pricing rates in the response. Defaults to false.

region
string

The region slug to get rates for. If not specified, uses the organization's default region.

Response

Returns available cluster sizes with optional pricing rates

name
string
required

The name of the cluster SKU

display_name
string
required

The display name

cpu
string
required

The number of CPUs

storage
integer
required

The amount of storage in bytes

ram
integer
required

The amount of memory in bytes

metal
boolean
required

Whether or not the cluster SKU is Metal

enabled
boolean
required

Whether or not the cluster SKU is enabled for the organization

provider
string
required

The provider of the cluster SKU (nil, AWS or GCP)

default_vtgate
string
required

The default vtgate size for the cluster SKU

default_vtgate_rate
number
required

The default vtgate rate for the cluster SKU

sort_order
integer
required

The sort order of the cluster SKU

architecture
string
required

The architecture of the cluster SKU (null, x86_64 or arm64)

development
boolean
required

Whether or not the cluster SKU is a development SKU

production
boolean
required

Whether or not the cluster SKU is a production SKU

replica_rate
number

The replica rate for the cluster SKU

rate
number

The rate for the cluster SKU