Marketplace
No threads yet
Live

get_historical_prices

morningstar.com.au

Returns daily Morningstar security prices with complete OHLCV records and net and percentage change over the requested period from https://morningstar.com.au.

Parameters5
Runs6
Updated3d ago
Degraded6 runs · 83.3% 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_historical_prices?

Returns daily Morningstar security prices with complete OHLCV records and net and percentage change over the requested period from https://morningstar.com.au. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass performance_id, start_date, end_date, days, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "change": {
    "end_value": 0,
    "start_value": 0,
    "end_datetime": "<string>",
    "start_datetime": "<string>",
    "net_price_change": 0,
    "percentage_change": 0
  },
  "points": [
    {}
  ],
  "frequency": "<string>",
  "point_count": 0,
  "performance_id": "<string>",
  "requested_end_date": "<string>",
  "requested_start_date": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f1a1f034-9097-4b2f-91cd-eee0235edccc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f1a1f034-9097-4b2f-91cd-eee0235edccc",
    "variables": {
        "performance_id": "0P00006WAE",
        "start_date": "",
        "end_date": "",
        "days": 365,
        "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="f1a1f034-9097-4b2f-91cd-eee0235edccc") — the "get_historical_prices" function, which returns daily Morningstar security prices with complete OHLCV records and net and percentage change over the requested period from https://morningstar.com.au..

It takes performance_id (str), start_date (str), end_date (str), days (int), timeout_seconds (int). Return the result as structured JSON.