Skip to main content
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.
If you need the total count of matching companies or aggregate statistics (average revenue, median EBITDA, etc.), use syrto_aggregate_companies instead - this tool only returns paginated results.

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)
Related tools: For lookup by company name or tax ID, use Find company. For aggregate statistics, use Aggregate companies.

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 - the company_id to pass to other Syrto tools
  • legal_name - official registered company name
  • tax_id - Italian tax identifier (null if not available)
  • match_score - semantic similarity score (float, only present when semantic_search is used)
  • short_description - brief description of the company’s activity (only present when semantic_search is used)
  • metrics - list of metric objects with name, slug, value, better_when (only present when metric_filters or sort_by with field: "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:
Result:
  • Filters for NACE section C (manufacturing), NUTS level 2 ITH5 (Emilia-Romagna), size L (large)
  • Returns up to 25 companies per page; pass end_cursor as after to fetch additional pages