Barrons APIbarrons.com ↗
Track real-time market movements with up-to-date data on major indices, top stock gainers and decliners, most active stocks, trending ETFs, and top-performing mutual funds all in one view. Get instant insights into market performance and identify which securities are making the biggest moves.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/972c19ee-b34c-46ce-aa46-ce9f784070de/get_market_overview' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns a comprehensive market overview combining major global indices, today's stock movers (top gainers, decliners, and most active by volume), leading ETF movers, and top-performing funds ranked by year-to-date return. Makes four fixed upstream requests in one call. Data is delayed per exchange rules (typically 15-20 minutes).
No input parameters required.
{
"type": "object",
"fields": {
"indices": "array of major market indices with price, change, percent change, daily high/low, and type",
"top_funds": "array of top 9 funds by year-to-date return percentage",
"etf_movers": "array of top 5 ETF gainers by percent change",
"stock_movers": "object with gainers, decliners, and movers (most active) arrays, each containing top 5 stocks",
"top_funds_period": "time period for fund returns (YearToDate)",
"indices_timestamp": "human-readable timestamp for when index data was last updated"
},
"sample": {
"data": {
"indices": [
{
"name": "DJIA",
"type": "Index",
"ticker": "DJIA",
"daily_low": 53866.69,
"timestamp": "2026-08-10T11:09:40-04:00",
"daily_high": 54072.66,
"last_price": "54016.71",
"price_change": "-20.22",
"percent_change": "-0.04"
},
{
"name": "S&P 500",
"type": "Index",
"ticker": "SPX",
"daily_low": 7748.42,
"timestamp": "2026-08-10T11:09:40-04:00",
"daily_high": 7773.76,
"last_price": "7760.64",
"price_change": "3.00",
"percent_change": "0.04"
}
],
"top_funds": [
{
"name": "Amplify Cmmdty:Brkwv Tkr",
"ticker": "BWET",
"net_assets": 35.9,
"return_percent": 1396.75
}
],
"etf_movers": [
{
"name": "Tradr 2X Long ACHR Daily ETF",
"ticker": "ARCX",
"volume": "247.0K",
"last_price": "17.80",
"price_change": "4.29",
"percent_change": "31.77"
}
],
"stock_movers": {
"movers": [
{
"name": "Space Exploration Technologies Corp.",
"ticker": "SPCX",
"volume": "69.6M",
"last_price": "136.15",
"price_change": "3.04",
"percent_change": "2.28"
}
],
"gainers": [
{
"name": "Wing Yip Food Holdings Group Ltd. ADR",
"ticker": "WYHG",
"volume": "2.3M",
"last_price": "8.88",
"price_change": "4.45",
"percent_change": "100.45"
}
],
"decliners": [
{
"name": "Sionna Therapeutics Inc.",
"ticker": "SION",
"volume": "21.4M",
"last_price": "4.06",
"price_change": "-46.98",
"percent_change": "-92.06"
}
]
},
"top_funds_period": "YearToDate",
"indices_timestamp": "11:09 AM EDT 8/10/26"
},
"status": "success"
}
}About the Barrons API
The Barrons API on Parse exposes 1 endpoint for the publicly available data on barrons.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.