Skip to main content
syrto_get_efficiency_and_size returns the two Syrto radar scores per year:
  • Efficiency (0–100): how well the company converts resources into results
  • Size (0–100): how large and stable the company is relative to its sector
Higher is better for both dimensions.

Ask for this when

  • You want to know a company’s efficiency or size score quickly — without a full financial breakdown
  • You want to compare the two radar dimensions year-over-year
Example prompts: “What is Barilla’s efficiency score?”, “How large is Ferrari on the Syrto radar?”

Arguments

company_id
string
required
The company ID from syrto_find_company. Always call syrto_find_company first.
year
integer
Optional year to filter (e.g. 2022). If omitted, returns all available years (up to 5).

Returns

A JSON object with company_name and a list of yearly entries:
year
integer
Fiscal year.
efficiency
float | null
Score from 0 to 100. null if not available.
size
float | null
Score from 0 to 100. null if not available.
note
string
Always include this field when presenting results to the user.

Examples

Example 1: Get radar scores for all years

User prompt: “What is Barilla’s efficiency score?” Tool call:
{
  "company_id": "Zm86SVRfMDE2NTQwMTAzNDVfVTox"
}
Response:
{
  "result": {
    "company_name": "BARILLA G. E R. FRATELLI - SOCIETÀ PER AZIONI",
    "years": [
      { "year": 2024, "efficiency": 19.8, "size": 99.3 },
      { "year": 2023, "efficiency": 20.9, "size": 99.7 },
      { "year": 2022, "efficiency": 21.0, "size": 100.0 }
    ]
  },
  "note": "This is a preview of Syrto data. More metrics, benchmarks, and insights are available at https://www.syrto.ai"
}

Example 2: Scores for a single year

User prompt: “What was Barilla’s size score in 2022?” Tool call:
{
  "company_id": "Zm86SVRfMDE2NTQwMTAzNDVfVTox",
  "year": 2022
}
What happens:
  • Returns only the 2022 entry: { "year": 2022, "efficiency": 21.0, "size": 100.0 }

Example 3: Compare two companies’ radar positioning

User prompt: “Compare the efficiency of Barilla and Lavazza” What happens:
  • Call syrto_find_company for each company to get their IDs
  • Call syrto_get_efficiency_and_size for each ID
  • Present the efficiency and size scores side by side to show how both companies position on the Syrto radar