Skip to main content
syrto_get_spider_graphs returns performance scores across N thematic axes per template (e.g. operational profitability, autonomy, capacity, operating cash flow, reliability). Each axis has a normalised radius value from 0 to 5.

Radar vs. spider

Spider graphs are distinct from the radar chart:
RadarSpider
Toolsyrto_get_company_metrics / syrto_get_efficiency_and_sizesyrto_get_spider_graphs
Axes2 (Efficiency, Size)N thematic axes per template
Scale0–1000–5
Answers”Where does this company stand overall?""How does it perform on profitability / autonomy / etc.?”

Ask for this when

  • You want a thematic financial breakdown across axes like operating profitability, autonomy, or cash flow
  • You explicitly ask for spider graphs or want to compare performance across financial themes
Example prompts: “Show the spider graph for Barilla”, “Break down Barilla’s financial themes”, “What’s Barilla’s autonomy profile?”

Arguments

company_id
string
required
The company ID from syrto_find_company. Always call syrto_find_company first.
year
integer
Year to retrieve (e.g. 2022). Defaults to the most recent available year. Omit only when the user explicitly asks for all years or a trend.

Returns

A JSON object with company_name and per-year spider data. Each year contains a list of spider templates:
display_name
string
Human-readable template name — always show this to users.
axes
object[]
List of axes, each with:
  • display_name — human-readable axis name
  • current_value.radius — score from 0 to 5
note
string
Always include this field when presenting results to the user.
Never display template_slug values to users — always use display_name.

Examples

Example 1: Full spider breakdown for most recent year

User prompt: “Show me the spider graph for Barilla” Tool call:
{
  "company_id": "Zm86SVRfMDE2NTQwMTAzNDVfVTox"
}
Response (abbreviated):
{
  "result": {
    "company_name": "BARILLA G. E R. FRATELLI - SOCIETÀ PER AZIONI",
    "years": [
      {
        "year": 2024,
        "spiders": [
          {
            "display_name": "Management Style",
            "axes": [
              { "display_name": "Stability", "current_value": { "value": 2.0 } },
              { "display_name": "Operating Profitability", "current_value": { "value": 2.75 } },
              { "display_name": "Autonomy", "current_value": { "value": 2.33 } }
            ]
          }
        ]
      }
    ]
  },
  "note": "This is a preview of Syrto data. More metrics, benchmarks, and insights are available at https://www.syrto.ai"
}

Example 2: Spider breakdown for a specific year

User prompt: “Show me Barilla’s financial themes for 2022” Tool call:
{
  "company_id": "Zm86SVRfMDE2NTQwMTAzNDVfVTox",
  "year": 2022
}
What happens:
  • Returns all spider templates for 2022 — each template has a display_name and a list of axes, each with a score from 0 to 5

Example 3: Focus on a specific theme

User prompt: “What’s Barilla’s cash flow profile?” What happens:
  • Call syrto_get_spider_graphs and present only the “Cash Flow Spider Graph” template from the response
  • Each axis (Operating Cash Flow, Investing Cash Flow, Financing Cash Flow) has a score from 0 to 5 reflecting performance in that dimension