> ## 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 overview

> Get a company's qualitative profile: sector, location, activity, and employee count.

`syrto_get_company_anagraphic` returns descriptive information about a company — what it does, where it's based, what sector it's in, and its size classification. It also includes contact details, social media profiles, and headcount breakdowns. It returns no financial figures.

**Related tools:** For financial data, use [Company analysis](/mcp/tools/company-analysis). For ownership structure, use [Company structure](/mcp/tools/company-structure).

## Use this tool to

* Learn what a company does, its sector, and location
* Get industry classification (ATECO/EU NACE), employee count, and website
* Find contact information, social media profiles, and VAT/tax details

## Arguments

<ParamField query="company_id" type="string" required>
  The company ID from [`syrto_find_company`](/mcp/tools/find-company).
</ParamField>

<ParamField query="year" type="integer">
  Year for size classification (e.g. `2023`). Defaults to the most recent available year.
</ParamField>

<ParamField query="language" type="string">
  `"en"` for English (default) or `"it"` for Italian.
</ParamField>

## Returns

<ResponseField name="company_name" type="string">
  Official legal name.
</ResponseField>

<ResponseField name="ateco_section / ateco_division / ateco_group / ateco_class" type="string">
  EU NACE sector codes at increasing levels of specificity.
</ResponseField>

<ResponseField name="activity_overview" type="string">
  Short description of the company's business.
</ResponseField>

<ResponseField name="target_markets" type="string[]">
  Geographic markets the company operates in.
</ResponseField>

<ResponseField name="target_markets_description" type="string | null">
  Free-text description of the company's target markets.
</ResponseField>

<ResponseField name="region / city / country_code" type="string">
  Company location.
</ResponseField>

<ResponseField name="website_url" type="string">
  Company website.
</ResponseField>

<ResponseField name="size_classification" type="string">
  EU SME category (e.g. `MEDIUM`, `LARGE`).
</ResponseField>

<ResponseField name="employee_count" type="float">
  Most recent headcount from annual filings.
</ResponseField>

<ResponseField name="founding_year" type="integer | null">
  Year the company was founded.
</ResponseField>

<ResponseField name="incorporation_date" type="string | null">
  Formal incorporation date (ISO 8601).
</ResponseField>

<ResponseField name="activity_start_date" type="string | null">
  Date business activity began (ISO 8601).
</ResponseField>

<ResponseField name="tax_id" type="string | null">
  Taxpayer identification number (codice fiscale).
</ResponseField>

<ResponseField name="vat_number" type="string | null">
  EU VAT number.
</ResponseField>

<ResponseField name="contact_emails" type="object[]">
  Email addresses with tags. Each entry has:

  * `value` — email address
  * `tags` — list of labels (e.g. `SUPPORT`, `INFO`, `PRESS`, `SALES`)
</ResponseField>

<ResponseField name="contact_phones" type="object[]">
  Phone numbers with tags. Each entry has:

  * `value` — phone number
  * `tags` — list of labels (e.g. `INFO`, `CUSTOMER_SERVICE`, `PARTNERSHIPS`)
</ResponseField>

<ResponseField name="social_media_profiles" type="object[]">
  Social media links. Each entry has:

  * `platform` — platform name (e.g. `LINKEDIN`, `INSTAGRAM`, `X`, `YOUTUBE`, `FACEBOOK`)
  * `url` — profile URL
</ResponseField>

<ResponseField name="headcount_employees" type="object | null">
  Real-time employee headcount:

  * `value` — number of employees
  * `updated_at` — when the data was last refreshed (ISO 8601)
</ResponseField>

<ResponseField name="headcount_contractors" type="object | null">
  Real-time contractor/collaborator headcount:

  * `value` — number of contractors
  * `updated_at` — when the data was last refreshed (ISO 8601)
</ResponseField>

<ResponseField name="note" type="string">
  Context note about data availability and where to find more on syrto.ai.
</ResponseField>

<ResponseField name="warning" type="string | null">
  Data availability warning (e.g. when the requested year is not available and the most recent year is returned instead).
</ResponseField>

## Example

**Get the profile of Barilla:**

```json theme={null}
{
  "company_id": "Zm86SVRfMDE2NTQwMTAzNDVfVTox"
}
```

**Response (abbreviated):**

```json theme={null}
{
  "result": {
    "company_name": "BARILLA G. E R. FRATELLI - SOCIETÀ PER AZIONI",
    "activity_overview": "Produces and markets pasta, sauces, and bakery products worldwide, handling manufacturing, distribution, and marketing.",
    "ateco_section": "C",
    "ateco_class": "10.73",
    "city": "PARMA",
    "region": "ITH5",
    "country_code": "IT",
    "size_classification": "L",
    "employee_count": 3928.0,
    "founding_year": 1988,
    "tax_id": "01654010345",
    "vat_number": "IT01654010345",
    "website_url": "https://www.barillagroup.com/",
    "contact_emails": [
      { "value": "mediarelations@barilla.com", "tags": ["PRESS"] }
    ],
    "social_media_profiles": [
      { "platform": "LINKEDIN", "url": "https://linkedin.com/company/barilla_group" }
    ],
    "headcount_employees": { "value": 3723, "updated_at": "2025-03-31 00:00:00+00:00" }
  },
  "note": "This is a preview of Syrto data. More metrics, benchmarks, and insights are available at https://www.syrto.ai"
}
```
