## List **get** `/v2/droplets/{droplet_id}/backups` To retrieve any backups associated with a Droplet, send a GET request to `/v2/droplets/$DROPLET_ID/backups`. You will get back a JSON object that has a `backups` key. This will be set to an array of backup objects, each of which contain the standard Droplet backup attributes. ### Returns - **meta:** `MetaProperties` Information about the response itself. - **backups:** `array of object` - **id:** `number` The unique identifier for the snapshot or backup. - **created\_at:** `string` A time value given in ISO8601 combined date and time format that represents when the snapshot was created. - **min\_disk\_size:** `number` The minimum size in GB required for a volume or Droplet to use this snapshot. - **name:** `string` A human-readable name for the snapshot. - **regions:** `array of string` An array of the regions that the snapshot is available in. The regions are represented by their identifying slug values. - **size\_gigabytes:** `number` The billable size of the snapshot in gigabytes. - **type:** `"snapshot" OR "backup"` Describes the kind of image. It may be one of `snapshot` or `backup`. This specifies whether an image is a user-generated Droplet snapshot or automatically created Droplet backup. - `"snapshot"` - `"backup"` - **links:** `PageLinks`