Skip to main content
GET
/
apps
/
{appId}
/
volumes
List Volumes
curl --request GET \
  --url https://api.bunny.net/mc/apps/{appId}/volumes \
  --header 'AccessKey: <api-key>'
{
  "items": [
    {
      "name": "<string>",
      "id": "<string>",
      "size": 5,
      "totalUsage": 123,
      "totalInstancesCount": 123,
      "attachedInstancesCount": 123,
      "containersCount": 123,
      "volumeInstances": [
        {
          "id": "<string>",
          "attachedPods": [
            "<string>"
          ],
          "attachedContainers": [
            "<string>"
          ],
          "region": "<string>",
          "status": "Unknown",
          "size": 5,
          "usage": 123
        }
      ]
    }
  ],
  "meta": {
    "totalItems": 123
  },
  "cursor": "<string>",
  "summary": {
    "totalPods": 123,
    "totalContainers": 123,
    "totalStorage": 123
  }
}

Authorizations

AccessKey
string
header
required

Please enter a valid personal API key.

Path Parameters

appId
string
required

Response

Volumes were successfully retrieved.

List volumes response

items
object[]
meta
object
cursor
string | null
summary
object