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

# Operating Metrics (KPIs)

### Fields

| Field              | Type                                                         | Description                                      |
| ------------------ | ------------------------------------------------------------ | ------------------------------------------------ |
| companySpecificKpi | String                                                       | Operating Metric Definition                      |
| footnotes          | String                                                       | Footnotes from the filings, if any               |
| source             | [Source](/company-data-api/graphql-objects/source-object.md) | Source of operating metric                       |
| timePeriod         | [Period](/company-data-api/graphql-objects/untitled-3.md)    | Daily, Monthly, Quarterly, Semi-Annual or Annual |
| unitType           | String                                                       | Currency or Units                                |
| value              | [Money](/company-data-api/graphql-objects/money-object.md)   | Amount with currency                             |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        operatingMetrics {
            companySpecificKpi
            footnotes
            source {
                url
            }
            timePeriod {
                periodType
                endDate
            }
            
            unitType
            value {
                currencyIsoCode
                value
            }
        }
    }
}


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