Stock Exchange Scraper
Pricing
Pay per usage
Go to Apify Store

Stock Exchange Scraper
Scrape real-time and historical stock market data from major exchanges (NYSE, NASDAQ, LSE, TSE, etc.). Get quotes, OHLCV data, and company info for any publicly traded stock. No API key required.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Monkey Coder
Maintained by Community
Actor stats
1
Bookmarked
2
Total users
1
Monthly active users
4 days ago
Last modified
Categories
Share
π Stock Exchange Scraper
Scrape real-time stock quotes and historical OHLCV data from major global stock exchanges β NYSE, NASDAQ, London, Tokyo, Frankfurt, Hong Kong, and more. No API key required.
β¨ Features
- Real-time quotes: Current price, change %, volume, 52-week high/low
- Historical data: Open/High/Low/Close/Volume with configurable range and interval
- Global coverage: US, European, Asian, and other international exchanges
- Dual data sources: Yahoo Finance (primary) + Stooq (fallback) for reliability
- No API key needed: Works out of the box
π§ How It Works
- Provide a comma-separated list of stock ticker symbols
- Choose quote mode for current prices or historical mode for time series
- For historical data, select time range (5 days to max) and interval (daily/weekly/monthly)
- The Actor fetches data from Yahoo Finance, falling back to Stooq if needed
- Results are pushed to the Apify dataset in clean, flat JSON format
π Input Parameters
| Parameter | Type | Description | Default |
|---|---|---|---|
symbols | String | Comma-separated ticker symbols | AAPL,MSFT,GOOGL,TSLA,AMZN |
mode | Select | quote for current prices, historical for OHLCV series | quote |
range | Select | Time range: 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, max | 1mo |
interval | Select | Data granularity: 1d (daily), 1wk (weekly), 1mo (monthly) | 1d |
Stock Symbol Format
- US stocks: Just the ticker β
AAPL,MSFT,GOOGL - Tokyo Stock Exchange: Add
.Tβ7203.T(Toyota),6758.T(Sony) - London Stock Exchange: Add
.LβHSBA.L(HSBC),VOD.L(Vodafone) - Frankfurt (Xetra): Add
.DEβBMW.DE,SAP.DE - Hong Kong: Add
.HKβ0700.HK(Tencent),9988.HK(Alibaba) - Paris: Add
.PAβMC.PA(LVMH),TTE.PA(TotalEnergies)
π Sample Output β Quote Mode
{"symbol": "AAPL","name": "Apple Inc.","price": 249.94,"change_percent": -1.14,"previous_close": 252.82,"open": 252.63,"high": 254.94,"low": 249.0,"volume": 35757874,"exchange": "NMS","full_exchange_name": "NasdaqGS","currency": "USD","instrument_type": "EQUITY","fifty_two_week_high": 260.1,"fifty_two_week_low": 164.08,"timezone": "America/New_York","checked_at": "2026-03-19T09:34:00Z"}
π Sample Output β Historical Mode
{"symbol": "AAPL","name": "Apple Inc.","date": "2026-03-18","open": 252.63,"high": 254.94,"low": 249.0,"close": 249.94,"volume": 35757874,"exchange": "NMS","currency": "USD","range": "1mo","interval": "1d"}
π‘ Use Cases
- Portfolio monitoring: Track multiple stocks in real time
- Financial research: Download historical price data for analysis
- Algorithmic trading: Feed OHLCV data into trading strategies
- Market comparison: Compare stocks across global exchanges
- Price alerts: Monitor stock prices and detect significant moves
β οΈ Notes
- Data is sourced from Yahoo Finance (primary) and Stooq (fallback)
- Quotes are near-real-time (15-20 min delay for some exchanges)
- Historical data availability depends on the stock and exchange
- Rate limiting is applied automatically between requests
- No API key or authentication required