syrto_search_companies finds companies matching structured criteria - sector, region, size, employee count, financial metrics, or a natural language description. Unlike syrto_find_company (which searches by name or tax ID), this tool filters by business characteristics.
Use this tool to
- Find companies in a specific sector, region, or size class
- Search by a natural language description of what the company does
- Filter companies by financial metric values (e.g. revenue above a threshold)
Arguments
string (JSON object)
Company profile filters as a JSON object. All fields are optional:
Example:
'{"nace": "C", "nuts": "ITH3", "age": {"min": 5}, "target_market": "B2B"}'integer
Fiscal year for annual data filters. Required when
size, metric_filters, employees, or radar are used, or when sorting by metric.string[]
One or more company size classifications:
"XS", "S", "M", "L" (e.g. ["S", "M"]). Requires year.string (JSON array)
Up to 10 metric value filters. Each object has
slug (required), min (optional), max (optional). Requires year.Use syrto_search_metric_definitions to find valid slugs.Example: '[{"slug": "revenues_from_sales_and_services", "min": 1000000}]'string (JSON object)
Employee count filter with
min and/or max. At least one is required. Requires year.Example: '{"min": 50, "max": 500}'string (JSON object)
Filter by position on the Syrto Radar plane (0–100 on both axes). Combines via AND with all other filters. At least one of
size, efficiency, or polygon is required. Requires year.Example (rectangle):
'{"efficiency": {"min": 70}, "size": {"min": 40, "max": 80}}'Example (polygon): '{"polygon": {"vertices": [{"size": 0, "efficiency": 70}, {"size": 60, "efficiency": 100}, {"size": 100, "efficiency": 70}]}}'boolean
Filter by consolidated financial statements. Default:
false (non-consolidated).string (JSON object)
Sort configuration as a JSON object. Fields:
Example:
'{"field": "metric", "metric_slug": "revenues_from_sales_and_services", "direction": "desc"}'string
Cursor for pagination. Pass the
end_cursor value from a previous response to fetch the next page. Omit for the first page.At least one filter parameter must be provided. Returns up to 25 results per page - use the
end_cursor from the response as the after parameter to fetch the next page.Returns
boolean
Whether more results are available beyond the current page.
object[]
List of matching companies (up to 25), each with:
id- thecompany_idto pass to other Syrto toolslegal_name- official registered company nametax_id- Italian tax identifier (nullif not available)match_score- semantic similarity score (float, only present whensemantic_searchis used)short_description- brief description of the company’s activity (only present whensemantic_searchis used)metrics- list of metric objects withname,slug,value,better_when(only present whenmetric_filtersorsort_bywithfield: "metric"is used)
string | null
Cursor token for fetching the next page. Pass this as the
after parameter. null when there are no more pages.string
Context note about data availability and where to find more on syrto.ai.
string
Link to the Syrto web app, where you can explore more data and insights.
Example
Find large manufacturers in Emilia-Romagna:- Filters for NACE section C (manufacturing), NUTS level 2 ITH5 (Emilia-Romagna), size L (large)
- Returns up to 25 companies per page; pass
end_cursorasafterto fetch additional pages