get_security_summary
morningstar.com.auRetrieve a security summary overview from https://morningstar.com.au using its Morningstar performance ID. Returns ratings, fundamentals, ESG data, trading ranges, market value and volume data, valuation ratios, and premium-only markers when applicable.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_security_summary?
Retrieve a security summary overview from https://morningstar.com.au using its Morningstar performance ID. Returns ratings, fundamentals, ESG data, trading ranges, market value and volume data, valuation ratios, and premium-only markers when applicable. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass performance_id and get the result back without maintaining a scraper.
Response
{
"summary": {},
"performance_id": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/d76626f2-f464-402a-a800-1e47493b8ae8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d76626f2-f464-402a-a800-1e47493b8ae8",
"variables": {
"performance_id": "0P00006WAE"
}
}'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="d76626f2-f464-402a-a800-1e47493b8ae8") — the "get_security_summary" function, which retrieve a security summary overview from https://morningstar.com.au using its Morningstar performance ID. Returns ratings, fundamentals, ESG data, trading ranges, market value and volume data, valuation ratios, and premium-only markers when applicable.. It takes performance_id (str). Return the result as structured JSON.