# Employees location Attributes

The [**Employees Location Attribute**](/api/finder#location) provides a breakdown of employee distribution by country based on the domain search or company analysis. This data helps you understand where a company's team is geographically located.

---

## Summary

| Field   | Type   | Description                                                                                    |
| ------- | ------ | ---------------------------------------------------------------------------------------------- |
| `name`  | string | Two-letter [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code |
| `total` | int    | Number of employees detected in that country                                                   |

---

### Example Response

```json
{
  "data": [
    {
      "name": "FR",
      "total": 2
    },
    {
      "name": "TN",
      "total": 24
    }
  ]
}
```
