> 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/operating-data/products-and-services.md).

# Products and Services

### Fields

| Field | Type   | Description                                          |
| ----- | ------ | ---------------------------------------------------- |
| code  | String | UNSPSC code                                          |
| name  | String | UNSPSC code name                                     |
| level | String | Hierarchy level: segment, family, class or commodity |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        productAndServiceCodes {
            code
            name
            level
        }
    }
}

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