get_market_overview
barrons.comReturns major global indices, U.S. stock gainers, decliners and most-active names, leading ETFs, and top year-to-date funds from https://www.barrons.com. Market quotes are delayed per exchange rules, typically 15-20 minutes.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_market_overview?
Returns major global indices, U.S. stock gainers, decliners and most-active names, leading ETFs, and top year-to-date funds from https://www.barrons.com. Market quotes are delayed per exchange rules, typically 15-20 minutes. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass stock_count, etf_count, fund_count and get the result back without maintaining a scraper.
Response
{
"source": "<string>",
"fetched_at": "<string>",
"stock_movers": {
"gainers": {
"timestamp": "<string>",
"instruments": [
{
"url": "<string>",
"name": "<string>",
"type": "<string>",
"ticker": "<string>",
"volume": 0,
"country": "<string>",
"mantissa": 0,
"lastPrice": "<string>",
"timestamp": "<string>",
"priceChange": "<string>",
"formattedName": "<string>",
"percentChange": "<string>",
"formattedVolume": "<string>"
}
],
"latestTimestamp": "<string>"
},
"decliners": {
"timestamp": "<string>",
"instruments": [
{
"url": "<string>",
"name": "<string>",
"type": "<string>",
"ticker": "<string>",
"volume": 0,
"country": "<string>",
"mantissa": 0,
"lastPrice": "<string>",
"timestamp": "<string>",
"priceChange": "<string>",
"formattedName": "<string>",
"percentChange": "<string>",
"formattedVolume": "<string>"
}
],
"latestTimestamp": "<string>"
},
"most_active": {
"timestamp": "<string>",
"instruments": [
{
"url": "<string>",
"name": "<string>",
"type": "<string>",
"ticker": "<string>",
"volume": 0,
"country": "<string>",
"mantissa": 0,
"lastPrice": "<string>",
"timestamp": "<string>",
"priceChange": "<string>",
"formattedName": "<string>",
"percentChange": "<string>",
"formattedVolume": "<string>"
}
],
"latestTimestamp": "<string>"
}
},
"top_ytd_funds": {
"timestamp": "<string>",
"instruments": [
{
"url": "<string>",
"name": "<string>",
"type": "<string>",
"ticker": "<string>",
"country": "<string>",
"netAssets": 0,
"returnRate": 0,
"exchangeIsoCode": "<string>",
"formattedPercentChange": "<string>"
}
]
},
"leading_etf_movers": {
"timestamp": "<string>",
"instruments": [
{
"url": "<string>",
"name": "<string>",
"type": "<string>",
"ticker": "<string>",
"volume": 0,
"country": "<string>",
"mantissa": 0,
"lastPrice": 0,
"timestamp": "<string>",
"priceChange": 0,
"percentChange": 0,
"formattedPrice": "<string>",
"formattedVolume": "<string>",
"formattedPriceChange": "<string>",
"formattedPercentChange": "<string>"
}
],
"latestTimestamp": "<string>"
},
"delayed_data_notice": "<string>",
"major_global_indices": {
"timestamp": "<string>",
"instruments": [
{
"url": "<string>",
"name": "<string>",
"type": "<string>",
"ticker": "<string>",
"country": "<string>",
"dailyLow": 0,
"mantissa": 0,
"dailyHigh": 0,
"lastPrice": "<string>",
"timestamp": "<string>",
"priceChange": "<string>",
"formattedName": "<string>",
"percentChange": "<string>",
"requestSymbol": "<string>",
"exchangeIsoCode": "<string>"
}
],
"latestTimestamp": "<string>"
},
"upstream_request_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/3cde05e7-0071-4a52-81cb-8e2f30ff3efd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3cde05e7-0071-4a52-81cb-8e2f30ff3efd",
"variables": {
"stock_count": 5,
"etf_count": 5,
"fund_count": 9
}
}'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="3cde05e7-0071-4a52-81cb-8e2f30ff3efd") — the "get_market_overview" function, which returns major global indices, U.S. stock gainers, decliners and most-active names, leading ETFs, and top year-to-date funds from https://www.barrons.com. Market quotes are delayed per exchange rules, typically 15-20 minutes.. It takes stock_count (int), etf_count (int), fund_count (int). Return the result as structured JSON.