syrto_list_available_metrics returns a catalogue of all available Syrto metrics, optionally filtered by type. Use it to discover metric slugs when you need to call syrto_get_company_metrics for metrics not already covered by syrto_get_company_analysis.
Use this tool to
- Discover available metric slugs by type
- Build custom metric sets and confirm correct slug names
- Browse all available Syrto metrics
Arguments
string
Optional filter. One of:
"balance_sheet_item", "financial_ratio", "profitability", "liquidity", "solvency", "structure", "spider_graph_axes", "spider_graph", "Group of Variables".
If omitted, returns a compact catalogue of all metrics grouped by type.string
"en" for English (default) or "it" for Italian.Metric types
Returns
integer
Total number of metrics across all types.
object[]
List of metric type groups, each with:
type- metric category namecount- number of metrics in this groupmetrics- list of metric entries
metric_type): each metric has slug and name only.Detailed mode (with metric_type): each metric also includes description, unit of measure, and better_if direction.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.
The
slug is an internal identifier. Use the human-readable name field for display.Typical workflow
- Call
syrto_list_available_metricswithmetric_type="balance_sheet_item"or"financial_ratio"to browse available slugs - Identify the slugs relevant to your question
- Pass those slugs to
syrto_get_company_metrics
Example
Get full details for balance sheet metrics:- Returns all balance sheet item metrics with full details: name, slug, description, unit, and direction
- Pick the slugs you need (e.g.
revenues,total_assets), then pass them tosyrto_get_company_metrics