# Zuplo CLI: Bucket List

<CliCommand
  command="bucket list"
  description="Lists the buckets in your account"
  options={[
  {
    "name": "account",
    "type": "string",
    "description": "The account name",
    "required": false,
    "deprecated": false,
    "hidden": false
  },
  {
    "name": "project",
    "type": "string",
    "description": "Filter buckets by project name",
    "required": false,
    "deprecated": false,
    "hidden": false
  },
  {
    "name": "output",
    "type": "string",
    "description": "Output format",
    "default": "default",
    "required": false,
    "deprecated": false,
    "hidden": false,
    "alias": [
      "o"
    ],
    "choices": [
      "default",
      "json"
    ]
  }
]}
  examples={[
  [
    "$0 bucket list",
    "List all buckets in your account"
  ],
  [
    "$0 bucket list --output json",
    "List all buckets as JSON"
  ],
  [
    "$0 bucket list --account my-account",
    "Explicitly specify the account"
  ],
  [
    "$0 bucket list --project my-project",
    "Filter buckets by project name"
  ]
]}
  usage="$0 bucket list [options]"
>

</CliCommand>

## Global options

The following global options are available for all commands:

- [`--help`](./global-options.mdx#help)
- [`--api-key`](./global-options.mdx#api-key)
