How to get the size of all repositories in a workspace

Platform Notice: Cloud Only - This article only applies to Atlassian products on the cloud platform.

Summary

Currently, there is no way to view the sizes of all repositories at once. You have to check each repository individually to determine its size. There is a feature request to implement a list of repositories with the size.

Solution

Forge app

You can install the Forge app described in this article: Access and Share Repository Size Data Across All Projects.

The app adds a Workspace Settings Menu page with the size of all repositories in a workspace and a download option to export the information in a CSV file.

Curl

This information can be obtained through the Bitbucket Cloud API.

As an example, you can use the API call below to return all the repositories in a workspace filtered by project name, repository name(workspace/repository name), description, and size:

1 curl -u <username>:<app_password> “https://api.bitbucket.org/2.0/repositories/<workspace>?fields=values.full_name,values.description,values.size,values.project.name&pagelen=100&page=1"

Replace the following values:

If you are using an API interfacing tool such as Postman or Insomnia, you can use a normal URL (with encoding):

1 https://api.bitbucket.org/2.0/repositories/<workspace>?fields=values.full_name,values.description,values.size,values.project.name&pagelen=100&page=1

The size is displayed in Bytes.

If you want to save these results in CSV format, run the following commands from a terminal that supports Linux.

1 2 3 4 5 6 7 # From the terminal, please make sure to install jq if not installed # Command to save the results in json file in the current directory curl -X GET -u <username>:<app_password> “https://api.bitbucket.org/2.0/repositories/<workspace>?fields=values.full_name,values.description,values.size,values.project.name&pagelen=100&page=1" | jq '.' > result.json # Command to convert the result in csv format jq -r '.values[] | [.project.name, .full_name, .description, .size] | @csv' result.json > result.csv

Updated on March 19, 2025

Still need help?

The Atlassian Community is here for you.