OptionalnameUsed to filter list response by Droplet name returning only exact matches. It is case-insensitive and can not be combined with tag_name.
OptionalpageWhich 'page' of paginated results to return.
OptionalperNumber of items returned per page
OptionaltagUsed to filter Droplets by a specific tag. Can not be combined with name or type.
Requires tag:read scope.
OptionaltypeWhen type is set to gpus, only GPU Droplets will be returned. By default, only non-GPU Droplets are returned. Can not be combined with tag_name.
To list all Droplets in your account, send a GET request to
/v2/droplets.The response body will be a JSON object with a key ofdroplets. This will beset to an array containing objects each representing a Droplet. These willcontain the standard Droplet attributes.### Filtering Results by TagIt's possible to request filtered results by including certain query parameters.To only list Droplets assigned to a specific tag, include thetag_namequeryparameter set to the name of the tag in your GET request. For example,/v2/droplets?tag_name=$TAG_NAME.### GPU DropletsBy default, only non-GPU Droplets are returned. To list only GPU Droplets, setthetypequery parameter togpus. For example,/v2/droplets?type=gpus.