search_securities
morningstar.com.auSearch stocks, ETFs, and managed funds by name or ticker on https://morningstar.com.au. Returns identifiers, performance IDs, security types, names, symbols, APIR codes, and exchange details for matching securities.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_securities?
Search stocks, ETFs, and managed funds by name or ticker on https://morningstar.com.au. Returns identifiers, performance IDs, security types, names, symbols, APIR codes, and exchange details for matching securities. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, page_size and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"page_size": 0,
"securities": [
{}
],
"total_matches": 0,
"returned_count": 0,
"totals_by_category": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/73a63435-bb24-4fde-984e-83c347820932/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "73a63435-bb24-4fde-984e-83c347820932",
"variables": {
"query": "BHP",
"page": 1,
"page_size": 10
}
}'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="73a63435-bb24-4fde-984e-83c347820932") — the "search_securities" function, which search stocks, ETFs, and managed funds by name or ticker on https://morningstar.com.au. Returns identifiers, performance IDs, security types, names, symbols, APIR codes, and exchange details for matching securities.. It takes query (str), page (int), page_size (int). Return the result as structured JSON.