# Retrieving a list of locations

To retrieve a list of locations, submit a **GET** request to:

```
https://push-api.sare.pl/v1/locations/<YOUR_WEBSITE_UID>
```

#### PHP example

```php
$url = "https://push-api.sare.pl/v1/locations/<YOUR_WEBSITE_UID>";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Authorization: Basic <YOUR_API_KEY>']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
```

#### Bash example

```bash
curl --include \
     --header "Authorization: Basic <YOUR_API_KEY>" \
     https://push-api.sare.pl/v1/locations/<YOUR_WEBSITE_UID>
```

#### Response example

```javascript
[
  {
    "cityName": "Warsaw",
    "count": 78
  },
  {
    "cityName": "Paris",
    "count": 56
  }
]
```
