get_security_financial_metrics
morningstar.com.auRetrieves multi-year key financial metrics for a security from https://morningstar.com.au, including financial summary, growth rates, profitability, financial health, and cash flow indicators.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_security_financial_metrics?
Retrieves multi-year key financial metrics for a security from https://morningstar.com.au, including financial summary, growth rates, profitability, financial health, and cash flow indicators. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass performance_id, years, report_type, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"years": 0,
"report_type": "<string>",
"growth_rates": {},
"performance_id": "<string>",
"financial_health": {},
"cash_flow_metrics": {},
"financial_summary": {},
"profitability_and_efficiency": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/f1ccef27-3015-471e-aa24-7023c877797e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f1ccef27-3015-471e-aa24-7023c877797e",
"variables": {
"performance_id": "0P00006WAE",
"years": 10,
"report_type": "A",
"timeout_seconds": 25
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="f1ccef27-3015-471e-aa24-7023c877797e") — the "get_security_financial_metrics" function, which retrieves multi-year key financial metrics for a security from https://morningstar.com.au, including financial summary, growth rates, profitability, financial health, and cash flow indicators.. It takes performance_id (str), years (int), report_type (str), timeout_seconds (int). Return the result as structured JSON.