> ## Documentation Index
> Fetch the complete documentation index at: https://developer.qminder.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Locations

To get list of all locations for the account you can use the `locations` query:

<CodeGroup>
  ```graphql graphql theme={null}
  query ListOfLocations {
    account {
      locations {
        id
        name
        address
      }
    }
  }
  ```
</CodeGroup>
