Investing.com Stock Data Scraper avatar

Investing.com Stock Data Scraper

Pricing

from $5.00 / 1,000 results

Go to Apify Store
Investing.com Stock Data Scraper

Investing.com Stock Data Scraper

[๐Ÿ’ฐ $5.0 / 1K] Extract fundamental and quote data for stocks on Investing.com by ticker symbol โ€” price, change, market cap, P/E, EPS, dividend yield, 52-week range, extended-hours pricing, and company profile.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

SolidCode

SolidCode

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Pull complete stock data from Investing.com by ticker symbol โ€” live price, daily OHLC, 52-week range, market cap, P/E, EPS, dividend yield, beta, next-earnings date, company profile, and pre-market plus after-hours pricing, all in one flat record per stock. Type a plain ticker like AAPL and get back 30+ structured fields. Built for retail investors, financial analysts, and fintech builders who need clean, structured market data without copy-pasting from Investing.com one stock page at a time.

Why This Scraper?

  • 30+ fields per stock in one flat record โ€” symbol, ISIN, exchange, sector, industry, employee count, full company description, price, OHLC, 52-week range, volume, market cap, and key ratios, with no nested arrays to flatten.
  • Pre-market AND after-hours pricing โ€” extended-hours price plus its timestamp on every US listing, so you see the quote before the bell and after the close, not just the regular session.
  • Six fundamental ratios on every stock โ€” P/E, EPS, dividend yield, beta, trailing one-year return, and market capitalization, ready for screening and valuation models.
  • Global coverage across 46 country exchanges โ€” from the United States, United Kingdom, and Germany to Japan, Brazil, India, and Saudi Arabia, selectable from a clean country dropdown that resolves each ticker to its home-market listing.
  • Automatic ticker-to-listing resolution โ€” type a bare symbol and the scraper finds the right equity page for you; no instrument IDs, slugs, or URLs to look up by hand.
  • Batch lookups in a single run โ€” pass a whole list of tickers (["AAPL", "MSFT", "BBVA"]) and get one result per symbol, instead of running the scraper once per stock.
  • ISIN and exchange identifiers on every record โ€” the international securities identification number plus the listing exchange name, so each row maps cleanly to your existing security master.
  • Next-earnings date out of the box โ€” the next scheduled earnings report date is captured per stock, ready for earnings-calendar dashboards and alerts.
  • Tolerant by design โ€” a ticker that can't be matched returns a clearly flagged row (found: false) instead of failing the run, so one bad symbol never costs you the rest of your batch.

Use Cases

Investment Research

  • Screen stocks by P/E, EPS, dividend yield, and beta across a watchlist
  • Compare a company's last price against its 52-week high and low
  • Pull market capitalization and one-year return for valuation models
  • Read the full company profile โ€” sector, industry, employees, and description โ€” in one place

Portfolio Monitoring

  • Refresh price, change percent, and volume across your holdings on a schedule
  • Track pre-market and after-hours moves before and after the regular session
  • Watch the next-earnings date for every position to prepare ahead of reports
  • Monitor daily open, high, and low for stocks you actively trade

Fintech & App Building

  • Power a stock-quote or watchlist app with structured price and fundamentals data
  • Feed a portfolio tracker with consistent, machine-readable records
  • Map every stock to its ISIN and exchange for a clean security master
  • Build earnings-calendar and alerting features on the next-earnings field

Market Analysis

  • Compare the same company's listings across international exchanges
  • Build sector and industry breakdowns from the company profile fields
  • Analyze dividend yield and beta distributions across a market segment
  • Track market-cap rankings over time with scheduled runs

Data Enrichment

  • Enrich an existing ticker list with live price, ratios, and company metadata
  • Resolve plain symbols to ISIN and exchange identifiers in bulk
  • Append fresh fundamentals to a research spreadsheet or database
  • Fill gaps in a security master with sector, industry, and currency data

Getting Started

Look Up a Single Stock

The simplest way to start โ€” one ticker:

{
"stockSymbols": ["AAPL"]
}

Batch of US Stocks

Pass a list to get one result per symbol:

{
"stockSymbols": ["AAPL", "MSFT", "NVDA", "TSLA"],
"country": "united states"
}

International Listing

Target a non-US exchange so the right listing is picked:

{
"stockSymbols": ["BBVA", "SAN"],
"country": "spain"
}

Input Reference

What to Look Up

ParameterTypeDefaultDescription
stockSymbolsstring[]["AAPL"]One or more stock ticker symbols to look up, such as AAPL, MSFT, or BBVA. Each symbol returns one result.
countryselectUnited StatesCountry where the stocks are listed. Helps pick the right listing when the same ticker exists on multiple exchanges. Choose from 46 countries including the US, UK, Germany, Japan, Brazil, India, and more.

Output

Each stock returns one flat record. Here's a representative result:

{
"symbol": "AAPL",
"country": "united states",
"found": true,
"instrumentId": 6408,
"isin": "US0378331005",
"companyName": "Apple Inc",
"exchange": "NASDAQ",
"sector": "Technology",
"industry": "Consumer Electronics",
"market": "United States",
"employees": 164000,
"description": "Apple Inc. designs, manufactures, and markets smartphones, personal computers, tablets, wearables, and accessories worldwide...",
"currency": "USD",
"lastPrice": 228.52,
"change": 1.83,
"changePercent": 0.81,
"openPrice": 226.95,
"highPrice": 229.41,
"lowPrice": 226.30,
"week52High": 260.10,
"week52Low": 164.08,
"volume": 41250300,
"marketCap": 3470000000000,
"peRatio": 34.72,
"eps": 6.58,
"dividendYield": 0.44,
"beta": 1.21,
"oneYearReturn": 18.34,
"nextEarningsDate": "2026-07-30",
"preMarketPrice": 229.10,
"afterHoursPrice": 228.90,
"extendedHoursTime": "2026-05-30T20:15:00+00:00",
"url": "https://www.investing.com/equities/apple-computer-inc",
"retrievedAt": "2026-05-30T18:00:00+00:00"
}

Identity & Profile

FieldTypeDescription
symbolstringTicker symbol you queried
companyNamestringFull company name
isinstringInternational Securities Identification Number
exchangestringListing exchange name (e.g. NASDAQ)
sectorstringSector classification
industrystringIndustry classification
marketstringMarket or market segment
employeesnumberNumber of employees
descriptionstringCompany business description
instrumentIdnumberInvesting.com internal instrument identifier

Price & Trading

FieldTypeDescription
currencystringQuote currency (e.g. USD)
lastPricenumberMost recent trade price
changenumberAbsolute price change for the session
changePercentnumberPercentage price change for the session
openPricenumberSession opening price
highPricenumberSession high
lowPricenumberSession low
week52HighnumberHighest price over the trailing 52 weeks
week52LownumberLowest price over the trailing 52 weeks
volumenumberTrading volume

Fundamentals & Ratios

FieldTypeDescription
marketCapnumberMarket capitalization (raw value)
peRationumberPrice-to-earnings ratio
epsnumberEarnings per share
dividendYieldnumberDividend yield, as a percentage
betanumberBeta (volatility relative to the market)
oneYearReturnnumberTrailing one-year return, as a percentage
nextEarningsDatestringNext scheduled earnings report date

Extended Hours

FieldTypeDescription
preMarketPricenumberPre-market price (null when unavailable)
afterHoursPricenumberAfter-hours price (null when unavailable)
extendedHoursTimestringTimestamp of the extended-hours quote (null when unavailable)

Metadata

FieldTypeDescription
countrystringCountry you selected for the lookup
foundbooleanWhether data was successfully matched for this symbol
messagestringPresent only on a miss when you set a country โ€” a short note explaining the symbol isn't listed in that country
urlstringSource equity page on Investing.com
retrievedAtstringISO timestamp when the record was retrieved

Tips for Best Results

  • Set the country to target the right listing โ€” the same ticker can list on several exchanges, so picking the matching country (e.g. spain for BBVA) ensures you get the listing you actually want.
  • Batch your tickers โ€” pass your whole watchlist in stockSymbols in a single run rather than running once per stock; you get one clean result per symbol.
  • Pre-market and after-hours fields are US-listing features โ€” they populate for US stocks during extended-hours windows and return null on listings that don't trade outside the regular session, so treat them as optional in your downstream logic.
  • Check the found flag โ€” a misspelled ticker, or one that isn't listed in the country you chose, comes back with found: false (plus a short message when a country was set) instead of failing the run or returning a wrong-exchange match; filter on this field to separate matched stocks from misses.
  • Use the country dropdown over guessing โ€” the country selector covers 46 markets with clean labels, so you never have to remember an exchange code. When a ticker isn't listed in the country you pick, the row comes back with found: false and a short note instead of a wrong-exchange match โ€” try removing the country to get the primary listing.
  • Schedule recurring runs for fresh quotes โ€” price, change percent, volume, and extended-hours fields reflect the moment of retrieval, so run on a schedule to keep dashboards current.
  • marketCap is a raw number โ€” it's the full value (e.g. 3470000000000), not an abbreviated string like 3.47T, so it's ready for sorting and math without parsing.

Pricing

$5.00 per 1,000 results โ€” clean, predictable pay-per-result that undercuts comparable Investing.com stock data tools by roughly 29%.

ResultsEstimated Cost
100$0.50
1,000$5.00
10,000$50.00
100,000$500.00

A "result" is one stock record in the output dataset โ€” one per ticker you submit, so your cost is fully predictable from your input list. No compute charges โ€” you only pay per result returned. Platform fees (storage and usage tied to your Apify plan) are additional.

Integrations

Export data in JSON, CSV, Excel, XML, or RSS. Connect to 1,500+ apps via:

  • Zapier / Make / n8n โ€” Workflow automation
  • Google Sheets โ€” Direct spreadsheet export
  • Slack / Email โ€” Notifications on new results
  • Webhooks โ€” Trigger custom APIs on run completion
  • Apify API โ€” Full programmatic access

This actor is designed for legitimate investment research, market analysis, and financial application development. Users are responsible for complying with applicable laws and Investing.com's Terms of Service. Market data is provided for informational purposes only and is not investment advice. Do not use extracted data to mislead, manipulate markets, or for any illegal purpose.