Marketplace
No threads yet
Live

get_stock_key_statistics

finance.yahoo.com

Retrieves key financial statistics for a ticker from https://finance.yahoo.com, including complete non-empty valuation, trading, financial, and dividend data exposed by the site.

Parameters1
Runs10
Updated10d ago
Operational10 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_stock_key_statistics?

Retrieves key financial statistics for a ticker from https://finance.yahoo.com, including complete non-empty valuation, trading, financial, and dividend data exposed by the site. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass ticker and get the result back without maintaining a scraper.

Response

{
  "ticker": "<string>",
  "identity": {},
  "trading_data": {},
  "source_modules": {},
  "financial_metrics": {},
  "valuation_measures": {},
  "dividend_information": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/662640ac-ff54-4037-b586-9df1d2cb85c5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "662640ac-ff54-4037-b586-9df1d2cb85c5",
    "variables": {
        "ticker": "AAPL"
    }
}'

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="662640ac-ff54-4037-b586-9df1d2cb85c5") — the "get_stock_key_statistics" function, which retrieves key financial statistics for a ticker from https://finance.yahoo.com, including complete non-empty valuation, trading, financial, and dividend data exposed by the site..

It takes ticker (str). Return the result as structured JSON.