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_compare_companies fetches the same metrics for multiple companies in a single call, returning results side-by-side. It is significantly faster than calling syrto_get_company_metrics once per company.
Use this tool to
- Compare specific financial KPIs across 2 or more companies side-by-side
- Check which company performs best on a given metric (e.g. ROE, EBITDA)
- Get year-on-year metric trends for multiple companies at once
Arguments
List of company IDs from
syrto_find_company or syrto_lookup_companies_by_tax_id. Minimum 2, maximum 20.Metric code slugs to compare (min 1, max 10). Examples:
["ebitda", "roe", "net_financial_position"]. Use syrto_search_metric_definitions or syrto_list_available_metrics to find valid slugs.Fiscal year for comparison (e.g.
2023)."en" for English (default) or "it" for Italian.Returns
A JSON object with per-company results and a list of any unrecognized company IDs.One entry per requested company (in the same order as
company_ids), each with company_id, legal_name, and a years array.One entry per fiscal year. Each contains:
year— fiscal yearsize— EU SME classificationemployee_count— headcount (nullif unavailable)metrics— list of metric objects
One entry per requested metric slug, each with:
name— human-readable metric nameslug— internal identifiervalue— numeric value (ornullif unavailable)better_when— object withwhen_type:"HIGHER","LOWER","NEAR_TARGET", ornull
Company IDs from the request that were not found.
Present when metric slugs were not recognized (no data returned for any company).
Example
Compare EBITDA and ROE for two companies:- Returns each company with the requested metrics for the specified year
- Check
missing_company_idsto verify all requested companies were found