# Zuplo CLI: List

<CliCommand
  command="list"
  description="Lists all deployed Zuplo APIs"
  options={[
  {
    "name": "project",
    "type": "string",
    "description": "The project name",
    "required": false,
    "deprecated": false,
    "hidden": false
  },
  {
    "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"
    ]
  },
  {
    "name": "self-hosted-endpoint",
    "type": "string",
    "description": "The endpoint of your self-hosted service to deploy to",
    "required": false,
    "deprecated": false,
    "hidden": false
  },
  {
    "name": "show-details",
    "type": "boolean",
    "description": "Include deployment metadata in the output",
    "default": false,
    "required": false,
    "deprecated": false,
    "hidden": false,
    "alias": [
      "d"
    ]
  }
]}
  examples={[
  [
    "$0 list",
    "List all deployed environments for your project"
  ],
  [
    "$0 list --show-details",
    "List all deployed environments with project and deployment names"
  ],
  [
    "$0 list --output json",
    "List deployed environments as JSON"
  ],
  [
    "$0 list --account my-account --project my-project",
    "Explicitly specify the account and project"
  ]
]}
  usage="$0 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)
