---
title: "List All Droplet Sizes"
method: GET
path: "/v2/sizes"
tags: ["DigitalOcean-public.v2-new_Sizes"]
---

# List All Droplet Sizes

`GET /v2/sizes`

To list all of available Droplet sizes, send a GET request to `/v2/sizes`.
The response will be a JSON object with a key called `sizes`. The value of this will be an array of `size` objects each of which contain the standard size attributes.

## Query parameters

- `per_page` integer
- `page` integer

## Response `200`

A JSON object with a key called `sizes`. The value of this will be an array of `size` objects each of which contain the standard size attributes.

- object
  - `sizes` Size[], required
    - `slug` string, required — A human-readable string that is used to uniquely identify each size.
    - `memory` integer, required — The amount of RAM allocated to Droplets created of this size. The value is represented in megabytes.
    - `vcpus` integer, required — The number of CPUs allocated to Droplets of this size.
    - `disk` integer, required — The amount of disk space set aside for Droplets of this size. The value is represented in gigabytes.
    - `transfer` number, float, required — The amount of transfer bandwidth that is available for Droplets created in this size. This only counts traffic on the public interface. The value is given in terabytes.
    - `price_monthly` number, float, required — This attribute describes the monthly cost of this Droplet size if the Droplet is kept for an entire month. The value is measured in US dollars.
    - `price_hourly` number, float, required — This describes the price of the Droplet size as measured hourly. The value is measured in US dollars.
    - `regions` string[], required — An array containing the region slugs where this size is available for Droplet creates.
    - `available` boolean, required — This is a boolean value that represents whether new Droplets can be created with this size.
    - `description` string, required — A string describing the class of Droplets created from this size. For example: Basic, General Purpose, CPU-Optimized, Memory-Optimized, or Storage-Optimized.
    - `disk_info` DiskInfo[] — An array of objects containing information about the disks available to Droplets created with this size.
      - `type` 'local' | 'scratch' — The type of disk. All Droplets contain a `local` disk. Additionally, GPU Droplets can also have a `scratch` disk for non-persistent data.
      - `size` object
        - `amount` integer — The amount of space allocated to the disk.
        - `unit` string — The unit of measure for the disk size.
    - `gpu_info` GpuInfo — An object containing information about the GPU capabilities of Droplets created with this size.
      - `count` integer — The number of GPUs allocated to the Droplet.
      - `model` string — The model of the GPU.
      - `vram` object
        - `amount` integer — The amount of VRAM allocated to the GPU.
        - `unit` string — The unit of measure for the VRAM.
  - `links` PageLinks
    - `pages` union
      - ForwardLinks
        - `last` string — URI of the last page of the results.
        - `next` string — URI of the next page of the results.
      - BackwardLinks
        - `first` string — URI of the first page of the results.
        - `prev` string — URI of the previous page of the results.
      - unknown
  - `meta` object, required — Information about the response itself.
    - `total` integer, required — Number of objects returned by the request.

## Other responses

- `401` — Authentication failed due to invalid credentials.
- `429` — The API rate limit has been exceeded.
- `500` — There was a server error.
- `default` — There was an unexpected error.

---

[API](https://skmtc.net/digitalocean/apis/digitalocean-api.md) · [All operations](https://skmtc.net/digitalocean/apis/digitalocean-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/digitalocean/digitalocean-api/revisions/cb3bf9b21459/schema)
