---
title: "List Countries with Locations"
description: "Returns countries that have monitoring locations with active workers. Requires authentication."
---

`GET /api/monitoring-locations/countries`

## Example (cURL)

```bash
curl -X GET "$BASE_URL/api/monitoring-locations/countries" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Accept: application/json"
```

## Response

```json
{
  "countries": [
    { "code": "DE", "locations": 4, "workers": 23 },
    { "code": "ES", "locations": 1, "workers": 4 },
    { "code": "FI", "locations": 1, "workers": 6 },
    { "code": "FR", "locations": 1, "workers": 4 },
    { "code": "IT", "locations": 1, "workers": 4 },
    { "code": "PL", "locations": 1, "workers": 6 }
  ]
}
```

