Stock Exchange Scraper avatar

Stock Exchange Scraper

Pricing

Pay per usage

Go to Apify Store
Stock Exchange Scraper

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

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

  1. Provide a comma-separated list of stock ticker symbols
  2. Choose quote mode for current prices or historical mode for time series
  3. For historical data, select time range (5 days to max) and interval (daily/weekly/monthly)
  4. The Actor fetches data from Yahoo Finance, falling back to Stooq if needed
  5. Results are pushed to the Apify dataset in clean, flat JSON format

πŸ“‹ Input Parameters

ParameterTypeDescriptionDefault
symbolsStringComma-separated ticker symbolsAAPL,MSFT,GOOGL,TSLA,AMZN
modeSelectquote for current prices, historical for OHLCV seriesquote
rangeSelectTime range: 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, max1mo
intervalSelectData 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