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

# Revenue Breakdown

### Fields

| Field           | Type   | Description       |
| --------------- | ------ | ----------------- |
| segmentCategory | String | Segment Category  |
| segmentName     | String | Segment Name      |
| unitType        | String | Currency or Units |
| value           | Float  | Amount of revenue |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        revenueBreakdowns {
            period {
                periodType
                endDate
            }
            values {
                segmentCategory
                segmentName
                unitType
                value
            }
        }
    }
}

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