> 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/untitled-1.md).

# Salaries

### Fields

| Field        | Type                                                       | Description          |
| ------------ | ---------------------------------------------------------- | -------------------- |
| jobCategory  | String                                                     | Job Category         |
| medianSalary | [Money](/company-data-api/graphql-objects/money-object.md) | Amount with currency |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        salaries {
            jobCategory
            medianSalary {
                value
                currencyIsoCode
            }
        }
    }
}

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