search_stock_tickers
finance.yahoo.comSearches https://finance.yahoo.com by company name, symbol, or keyword and returns all available matching ticker records with company, exchange, security type, sector, industry, and other non-empty source fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_stock_tickers?
Searches https://finance.yahoo.com by company name, symbol, or keyword and returns all available matching ticker records with company, exchange, security type, sector, industry, and other non-empty source fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"results": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/e8b8b45f-d979-463c-af14-84021004b9b4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e8b8b45f-d979-463c-af14-84021004b9b4",
"variables": {
"query": "apple"
}
}'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="e8b8b45f-d979-463c-af14-84021004b9b4") — the "search_stock_tickers" function, which searches https://finance.yahoo.com by company name, symbol, or keyword and returns all available matching ticker records with company, exchange, security type, sector, industry, and other non-empty source fields.. It takes query (str). Return the result as structured JSON.