---
title: "Get Control Account Bucket Utilization"
slug: "get-control-account-bucket-utilization"
updated: 2026-02-25T13:56:58Z
published: 2026-02-25T13:57:17Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wasabi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Control Account Bucket Utilization

Get/v1/control-accounts/{controlAccountId}/buckets

Read all bucket utilization for a Control Account.

SecurityHTTPType basic

HTTP Basic Authentication using your WACM username and API key.

For detailed authentication instructions, see the [Authentication Guide](https://docs.wasabi.com/apidocs/wacm-connect-api-authentication).

Path parameterscontrolAccountIdintegerRequired

Control Account ID

Query parameterspageinteger

Page number

sizeinteger

Number of items per page

fromstring (date) 

Start date (YYYY-MM-DD)

tostring (date) 

End date (YYYY-MM-DD)

latestboolean

Retrieve only the latest bucket utilization

namestring

Filter by bucket name

bucketNumberinteger

Filter by bucket number

regionstring

Filter by region

Responses200

Successfully retrieved bucket utilization

<select class='api-response-data' aria-label='Media type'><option value='ecfd38db-c108-44ba-9658-65b4a023e86b'>application/json</option>
</select>

```json
{
  "success": "True",
  "data": {
    "items": [
      {
        "id": "789012",
        "name": "my-sample-bucket",
        "region": "us-east-1",
        "bucketNumber": "12345",
        "startTime": "2024-01-15",
        "endTime": "2024-01-15",
        "bucketDeleteTime": "",
        "activeStorage": "0.5",
        "deletedStorage": "0.01",
        "storageWrote": "0.2",
        "storageRead": "0.05",
        "activeObjects": "15000",
        "deletedObjects": "200",
        "egress": "0.1",
        "ingress": "0.3",
        "apiCalls": "50000"
      }
    ],
    "page": "1",
    "size": "20",
    "total": "1"
  }
}
```

Expand Allobject  successboolean    
dataobject  items Array of object (BucketUtilizationResponse)   object  idinteger    
namestring    
regionstring    
bucketNumberinteger    
startTimestring  (date)    
endTimestring  (date)    
bucketDeleteTimestring  (date)   | null  

Date the bucket was deleted. Null if the bucket is still active.

activeStoragenumber    

Active storage in TB

deletedStoragenumber    

Deleted storage in TB

storageWrotenumber    

Storage written in TB

storageReadnumber    

Storage read in TB

activeObjectsinteger    
deletedObjectsinteger    
egressnumber    

Egress in GB

ingressnumber    

Ingress in GB

apiCallsinteger    

pageinteger    
sizeinteger    
totalinteger
