Yahoo Finance Scraper — Live Quotes & Price History avatar

Yahoo Finance Scraper — Live Quotes & Price History

Pricing

from $0.00072 / symbol scraped

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

from $0.00072 / symbol scraped

Rating

0.0

(0)

Developer

hiper soft

hiper soft

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 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
}

FAQ

Do I need an API key or Yahoo Finance account? No. The Actor reads public Yahoo Finance market data, so there's no login and no API key. A proxy is optional and only needed if you hit rate limits.

How many symbols can I fetch per run? There's no fixed cap — pass as many tickers as you like (one per line) and tune maxConcurrency to control how many are fetched in parallel. Symbols that don't exist come back with found: false.

How fresh is the data? Quotes are pulled live at run time and include a marketState (REGULAR/CLOSED/PRE/POST) plus a marketTime ISO timestamp, so you always know when the price was captured.

Is this official Yahoo Finance data? The data is provided by Yahoo Finance for personal/informational use, but this Actor is an independent tool and is not affiliated with or endorsed by Yahoo. It is not investment advice.

What's the output format? Flat JSON, one row per symbol, with price, day change, day range, 52-week range, volume and exchange — plus an optional OHLCV history array. Export as JSON, CSV or Excel.

More market-data scrapers from the same publisher:

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.