syrto_get_revenues returns a company’s top-line revenue figures. Use it when the user asks only about revenues and nothing else — it’s a lightweight alternative to syrto_get_company_metrics for this single metric.
Ask for this when
- You want to know a company’s revenues or turnover — and nothing else
- You want a quick single-metric answer without a full financial analysis
Arguments
The company ID from
syrto_find_company. Always call syrto_find_company first.Optional year to filter (e.g.
2022). If omitted, returns all available years (up to 5).Returns
A JSON object withcompany_name and a list of yearly entries:
Fiscal year.
Raw value in EUR.
null if not available.Human-readable string, e.g.
"1,234,567.00 EUR".Always include this field when presenting results to the user.
Examples
Example 1: Revenue for a specific year
User prompt: “What was Barilla’s revenue in 2022?” Tool call:Example 2: Revenue trend across all available years
User prompt: “Show me Barilla’s revenues for the last 5 years” Tool call:- Omitting
yearreturns all available years (up to 5) in a single response - Each entry includes the raw
revenuesvalue in EUR and a human-readablerevenues_formattedstring
Example 3: Revenue as first question
User prompt: “How much did Barilla earn last year?” What happens:- Call
syrto_find_companywith"Barilla"first, then pass the ID here without specifyingyear - The tool returns the most recent year’s revenue at the top of the
yearslist