> 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/latest-z-score.md).

# Latest Z Score

### Fields

| Field  | Type                                                      | Description                        |
| ------ | --------------------------------------------------------- | ---------------------------------- |
| period | [Period](/company-data-api/graphql-objects/untitled-3.md) | Z score period (most recent value) |
| value  | Float                                                     | Z score value (most recent)        |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        latestZScore {
            period {
                endDate
                periodType
            }
            value
        }
    }
}

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