> ## Documentation Index
> Fetch the complete documentation index at: https://docs.syrto.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Company financials

> A financial snapshot for a single Italian company by tax ID.

Returns a financial snapshot for one company: its identity, whether its figures are consolidated, and its latest reported year of headline figures.

<Info>
  Example endpoint. Whether it is part of your API depends on your organization's configuration - check [your schema](/api/openapi) for the endpoints provisioned for you.
</Info>

```
GET /companies/{taxId}/financials
```

## Path parameters

<ParamField path="taxId" type="string" required>
  The company's Italian tax ID (codice fiscale). Any non-empty value.
</ParamField>

## Usage

Each successful call records a default measure of **5 credits**. The exact measure billed is always returned in `meta.usage` and may differ under your plan.

## Response

The `data` object contains:

<ResponseField name="id" type="string">Syrto's internal company identifier.</ResponseField>
<ResponseField name="isConsolidated" type="boolean">Whether the figures come from consolidated financial statements.</ResponseField>
<ResponseField name="latestFiledYear" type="number | null">The most recent fiscal year with filed figures.</ResponseField>
<ResponseField name="identity" type="CompanyIdentity">Descriptive company information. See [CompanyIdentity](/api/objects#companyidentity).</ResponseField>
<ResponseField name="latest" type="AnnualSnapshot | null">The latest year of headline figures. See [AnnualSnapshot](/api/objects#annualsnapshot).</ResponseField>

## Example

```bash theme={null}
curl -H "Authorization: Bearer $SYRTO_API_KEY" \
  https://api.syrto.ai/companies/01654010345/financials
```

```json theme={null}
{
  "data": {
    "id": "Zm86SVRfMDE2NTQwMTAzNDVfVTox",
    "isConsolidated": false,
    "latestFiledYear": 2023,
    "identity": {
      "legalName": "BARILLA G. E R. FRATELLI - SOCIETÀ PER AZIONI",
      "legalForm": "S.p.A.",
      "foundingYear": 1877,
      "incorporationDate": "1877-01-01",
      "isQuoted": false,
      "vatNumber": "01654010345",
      "fiscalCode": "01654010345",
      "naceCode": "10.73",
      "naceSection": "C",
      "address": {
        "line1": "Via Mantova 166",
        "line2": null,
        "locality": "Parma",
        "postalCode": "43122",
        "countryCode": "IT"
      }
    },
    "latest": {
      "year": 2023,
      "isForecasted": false,
      "size": "L",
      "statementDate": "2023-12-31",
      "employees": 8760,
      "employeesYoY": 0.03
    }
  },
  "meta": {
    "requestId": "req_018f9c2e7b7a7c3e9a1b2c3d4e5f6a7b",
    "endpoint": "company-financials",
    "usage": { "quantity": 5, "unit": "credits" }
  }
}
```
