> 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/sentiment-breakdowns.md).

# Sentiment Breakdowns

### Fields

| Field  | Type                                                                                                                    | Description                                              |
| ------ | ----------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------- |
| period | [Period](/company-data-api/graphql-objects/untitled-3.md)                                                               | Daily, Weekly, Monthly, Quarterly, Semi-Annual or Annual |
| values | [SentimentBreakdownItem](/company-data-api/data-points/operating-data/sentiment-breakdowns/sentiment-breakdown-item.md) | The list of breakdowns for the sentiment                 |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        sentimentBreakdowns {
            period {
                displayEndDate
                endDate
                periodType
                startDate
            }
            values {
                breakdownType
                breakdownValue
                channel
                negative
                neutral
                positive
            }
        }
    }
}


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