# Zuplo CLI: Custom Domain List

<CliCommand
  command="custom-domain list"
  description="Lists the custom domains in your account"
  options={[
  {
    "name": "account",
    "type": "string",
    "description": "The account 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 custom-domain list",
    "List all custom domains"
  ],
  [
    "$0 custom-domain list --output json",
    "List all custom domains as JSON"
  ],
  [
    "$0 custom-domain list --account my-account",
    "Explicitly specify the account"
  ]
]}
  usage="$0 custom-domain 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)
