Marketplace
No threads yet
Live

get_security_financial_statements

morningstar.com.au

Retrieves detailed Income Statement, Balance Sheet, or Cash Flow statement data from https://morningstar.com.au with hierarchical line items and multi-year columns, including premium-only placeholders when present.

Parameters6
Runs8
Updated8d ago
Operational8 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_security_financial_statements?

Retrieves detailed Income Statement, Balance Sheet, or Cash Flow statement data from https://morningstar.com.au with hierarchical line items and multi-year columns, including premium-only placeholders when present. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass performance_id, statement, period, report_type, max_columns, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "period": "<string>",
  "statement": "<string>",
  "report_type": "<string>",
  "performance_id": "<string>",
  "financial_statement": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/d55583e1-43c1-43ea-a676-190f3c7980b4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "d55583e1-43c1-43ea-a676-190f3c7980b4",
    "variables": {
        "performance_id": "0P00006WAE",
        "statement": "income_statement",
        "period": "annual",
        "report_type": "as_reported",
        "max_columns": 0,
        "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.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="d55583e1-43c1-43ea-a676-190f3c7980b4") — the "get_security_financial_statements" function, which retrieves detailed Income Statement, Balance Sheet, or Cash Flow statement data from https://morningstar.com.au with hierarchical line items and multi-year columns, including premium-only placeholders when present..

It takes performance_id (str), statement (str), period (str), report_type (str), max_columns (int), timeout_seconds (int). Return the result as structured JSON.