Yahoo Finance Scraper — Live Quotes & Price History avatar

Yahoo Finance Scraper — Live Quotes & Price History

Pricing

Pay per event

Go to Apify Store
Yahoo Finance Scraper — Live Quotes & Price History

Yahoo Finance Scraper — Live Quotes & Price History

Get live stock, ETF, crypto, forex and index quotes from Yahoo Finance by ticker: price, day and 52-week range, volume, exchange and change %, plus optional OHLCV price history. Public data — no login, no API key.

Pricing

Pay per event

Rating

0.0

(0)

Developer

hiper soft

hiper soft

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Pull live market data for any ticker from Yahoo Finance. Give the Actor a list of symbols and it returns each one's price, day change, day range, 52-week range, volume, exchange and market state — plus optional OHLCV price history. Works for stocks, ETFs, crypto, forex and indices. Public data, so no login, no API key.

Great for portfolio tracking, market dashboards, quant datasets, alerting and research.

What you get per symbol

FieldNotes
price, previousCloseLatest price and prior close.
change, changePercentAbsolute and % move vs previous close.
dayHigh, dayLow, volumeRegular-session day stats.
fiftyTwoWeekHigh, fiftyTwoWeekLow52-week range.
name, currency, exchange, marketStateInstrument info + REGULAR/CLOSED/PRE/POST.
marketTimeTimestamp of the quote (ISO 8601).
historyOptional OHLCV array (date, open, high, low, close, adjClose, volume).

Input

{
"symbols": ["AAPL", "MSFT", "BTC-USD", "EURUSD=X", "^GSPC"],
"includeHistory": true,
"interval": "1d",
"range": "6mo"
}
  • symbols — Yahoo tickers, one per line. Stocks (AAPL), ETFs (SPY), crypto (BTC-USD), forex (EURUSD=X), indices (^GSPC).
  • includeHistory — attach an OHLCV candle array (default off = quote only).
  • interval — candle size (1m1mo) for history.
  • range — how far back (1dmax) for history.
  • maxConcurrency — symbols fetched in parallel.
  • proxyConfiguration — optional; only if you hit rate limits.

Output (one row per symbol)

{
"symbol": "AAPL",
"name": "Apple Inc.",
"currency": "USD",
"exchange": "NasdaqGS",
"marketState": "REGULAR",
"price": 315.32,
"previousClose": 312.10,
"change": 3.22,
"changePercent": 1.03,
"dayHigh": 316.4,
"dayLow": 311.8,
"volume": 48213000,
"fiftyTwoWeekHigh": 320.1,
"fiftyTwoWeekLow": 210.4,
"marketTime": "2026-07-10T20:00:00.000Z",
"found": true
}

Notes

Symbols that don't exist return a row with found: false. Data is provided by Yahoo Finance for personal/informational use — respect their terms; not investment advice.