Yahoo Finance Scraper — Stocks, ETFs, Indices & Crypto
Pricing
from $1.00 / 1,000 quotes
Yahoo Finance Scraper — Stocks, ETFs, Indices & Crypto
Scrape live quotes from Yahoo Finance: price, daily change, day range, 52-week range, volume and optional OHLC history. Stocks, ETFs, indices, FX and crypto. No API key.
Pricing
from $1.00 / 1,000 quotes
Rating
0.0
(0)
Developer
Hichem Ben Moussa
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Pull live market quotes from Yahoo Finance for any ticker: price, daily change (%), day range, 52-week range, volume, and optional OHLC price history. Works for stocks, ETFs, indices, currencies and crypto — no API key, no login.
Feed it ticker symbols (or a search term) and get a clean table you can export to CSV / Excel / JSON or pull live via the Apify API.
What you can do with it
- 📈 Build a stock / crypto watchlist and refresh it on a schedule
- 🧮 Pull OHLC history for backtesting or charts (1m → monthly candles)
- 🔔 Feed price alerts to Google Sheets, a bot, or a dashboard
- 🌍 Track indices (
^GSPC,^IXIC), FX (EURUSD=X), and crypto (BTC-USD) side by side
Input
| Field | Type | Description |
|---|---|---|
symbols | array | Yahoo tickers, e.g. AAPL, MSFT, TSLA, ^GSPC, BTC-USD, EURUSD=X. |
searchQuery | string | Free-text (e.g. apple) used to resolve tickers when symbols is empty. |
range | string | Snapshot / history range: 1d, 5d, 1mo … max. |
interval | string | Candle granularity when history is enabled: 1m … 1mo. |
includeHistory | boolean | Attach an array of OHLC candles for the range/interval. |
proxyConfiguration | object | Optional proxy for high-volume runs. |
Example — a watchlist
{ "symbols": ["AAPL", "MSFT", "TSLA", "BTC-USD"] }
Example — daily candles for a year
{ "symbols": ["NVDA"], "range": "1y", "interval": "1d", "includeHistory": true }
Output
Each item is one symbol:
{"symbol": "AAPL","name": "Apple Inc.","exchange": "NasdaqGS","instrumentType": "EQUITY","currency": "USD","price": 333.02,"previousClose": 321.66,"change": 11.36,"changePct": 3.53,"dayHigh": 334.37,"dayLow": 321.62,"fiftyTwoWeekHigh": 334.99,"fiftyTwoWeekLow": 201.5,"volume": 47402209,"marketTime": "2026-07-26T20:00:01.000Z","url": "https://finance.yahoo.com/quote/AAPL"}
With includeHistory: true each item also has a history array of { date, open, high, low, close, volume } candles.
Notes
- Data comes from Yahoo Finance's public chart endpoints.
- Use Yahoo's ticker format: indices start with
^, FX ends with=X, crypto uses-USD.