# Queues list Use the `ably queues list` command to list all queues for an application. ## Synopsis ### Shell ``` ably queues list [options] ``` ## Options ### `--app` The app ID to list queues for. If not specified, the currently selected app is used. ### `--limit` The maximum number of queues to return. The default value is `100`. ### `--json` Output results as compact JSON. Mutually exclusive with `--pretty-json`. ### `--pretty-json` Output results in formatted JSON. Mutually exclusive with `--json`. ### `--verbose | -v` Enable verbose logging. Can be combined with `--json` or `--pretty-json`. ## Examples List all queues: ### Shell ``` ably queues list ``` List all queues in JSON format: ### Shell ``` ably queues list --json ``` List queues for a specific app in formatted JSON output: ### Shell ``` ably queues list --app "My App" --pretty-json ``` ## See also * [Queues](https://ably.com/docs/cli/queues.md) — Explore all `ably queues` commands. * [CLI reference](https://ably.com/docs/cli.md) — Full list of available commands. ## Related Topics - [create](https://ably.com/docs/cli/queues/create.md): Create a queue using the Ably CLI. - [delete](https://ably.com/docs/cli/queues/delete.md): Delete a queue using the Ably CLI. ## Documentation Index To discover additional Ably documentation: 1. Fetch [llms.txt](https://ably.com/llms.txt) for the canonical list of available pages. 2. Identify relevant URLs from that index. 3. Fetch target pages as needed. Avoid using assumed or outdated documentation paths.