> For the complete documentation index, see [llms.txt](https://docs.craft.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.craft.co/company-data-api/data-points/human-capital/employee-numbers.md).

# Employee Numbers

### Fields

| Field          | Type   | Description                                       |
| -------------- | ------ | ------------------------------------------------- |
| date           | String | ISO 8601 formatted date                           |
| employeeGrowth | Float  | Employee growth from the last period (a fraction) |
| employeeNumber | Int    | Count of employees at the company                 |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        employees {
            date
            employeeGrowth
            employeeNumber
        }
    }
}

# variables
{ "domain": "meta.com" }
```
