Skip to main content

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.

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. For ownership structure, use 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

company_id
string
required
The company ID from syrto_find_company.
year
integer
Year for size classification (e.g. 2023). Defaults to the most recent available year.
language
string
"en" for English (default) or "it" for Italian.

Returns

company_name
string
Official legal name.
ateco_section / ateco_division / ateco_group / ateco_class
string
EU NACE sector codes at increasing levels of specificity.
activity_overview
string
Short description of the company’s business.
target_markets
string[]
Geographic markets the company operates in.
target_markets_description
string | null
Free-text description of the company’s target markets.
region / city / country_code
string
Company location.
website_url
string
Company website.
size_classification
string
EU SME category (e.g. MEDIUM, LARGE).
employee_count
float
Most recent headcount from annual filings.
founding_year
integer | null
Year the company was founded.
incorporation_date
string | null
Formal incorporation date (ISO 8601).
activity_start_date
string | null
Date business activity began (ISO 8601).
tax_id
string | null
Taxpayer identification number (codice fiscale).
vat_number
string | null
EU VAT number.
contact_emails
object[]
Email addresses with tags. Each entry has:
  • value — email address
  • tags — list of labels (e.g. SUPPORT, INFO, PRESS, SALES)
contact_phones
object[]
Phone numbers with tags. Each entry has:
  • value — phone number
  • tags — list of labels (e.g. INFO, CUSTOMER_SERVICE, PARTNERSHIPS)
social_media_profiles
object[]
Social media links. Each entry has:
  • platform — platform name (e.g. LINKEDIN, INSTAGRAM, X, YOUTUBE, FACEBOOK)
  • url — profile URL
headcount_employees
object | null
Real-time employee headcount:
  • value — number of employees
  • updated_at — when the data was last refreshed (ISO 8601)
headcount_contractors
object | null
Real-time contractor/collaborator headcount:
  • value — number of contractors
  • updated_at — when the data was last refreshed (ISO 8601)
note
string
Context note about data availability and where to find more on syrto.ai.
warning
string | null
Data availability warning (e.g. when the requested year is not available and the most recent year is returned instead).

Example

Get the profile of Barilla:
{
  "company_id": "Zm86SVRfMDE2NTQwMTAzNDVfVTox"
}
Response (abbreviated):
{
  "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"
}