# Spaces locations subscribe Use the `ably spaces locations subscribe` command to subscribe to location updates for members in a space. ## Synopsis ### Shell ``` ably spaces locations subscribe [options] ``` ## Arguments ### `space-name` **(Required)** The name of the space to subscribe to location updates in. ## Options ### `--duration | -D` The duration in seconds to subscribe for before automatically unsubscribing. ### `--client-id` A client ID to use when subscribing. ### `--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 Subscribe to location updates in a space: ### Shell ``` ably spaces locations subscribe my-space ``` Subscribe for a specific duration: ### Shell ``` ably spaces locations subscribe my-space --duration 60 ``` Subscribe to location updates in JSON format: ### Shell ``` ably spaces locations subscribe my-space --json ``` Subscribe to location updates in formatted JSON: ### Shell ``` ably spaces locations subscribe my-space --pretty-json ``` ## See also * [Spaces](https://ably.com/docs/cli/spaces.md) — Explore all `ably spaces` commands. * [CLI reference](https://ably.com/docs/cli.md) — Full list of available commands. ## Related Topics - [get](https://ably.com/docs/cli/spaces/locations/get.md): Get all current locations in an Ably Space using the CLI. - [set](https://ably.com/docs/cli/spaces/locations/set.md): Set location in an Ably Space using the 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.