Yahoo Finance Stocks Scraper avatar

Yahoo Finance Stocks Scraper

Under maintenance

Pricing

Pay per usage

Go to Apify Store
Yahoo Finance Stocks Scraper

Yahoo Finance Stocks Scraper

Under maintenance

Scrapes Yahoo Finance stock quote pages for price, change, company profile, market data, and key statistics.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Search API

Search API

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Scrapes Yahoo Finance stock quote pages for price, change, company profile, market data, and key statistics.

What this Actor collects

The Actor creates one quote record per requested ticker, combining current price data with the company and key-statistics fields Yahoo exposes.

  • Uses the input limits and filters below to control the crawl.
  • Stores source-backed fields defined by the 27-field dataset schema.
  • Fields unavailable on a particular quote page may be omitted; the Actor does not invent company or market values.

Use cases

  • Market and company research
  • Price, fundamentals, earnings, or derivatives monitoring
  • Structured inputs for financial analysis

Input

Provide input in JSON. Fields marked required must be supplied; source-specific alternatives and constraints are described in the field text.

FieldTypeRequiredDefaultDescription
symbolsarrayYes["AAPL"]Array of stock ticker symbols to scrape (e.g. AAPL, MSFT, GOOGL).
proxyConfigurationobjectNoProxy settings.

Example input

{
"symbols": [
"AAPL"
],
"proxyConfiguration": {
"useApifyProxy": false
}
}

Output

The default dataset contains one item per requested ticker. Current price and change fields are numeric; many quote-table values remain source-formatted strings.

FieldTypeDescription
descriptionstringDescription
scrapedAtstringScraped At
symbolstringTicker Symbol
currencystringCurrency
companyNamestringCompany Name
pricenumberCurrent Price
changenumberPrice Change
changePercentnumberChange %
previousClosenumberPrevious Close
opennumberOpen
bidstringBid
askstringAsk
daysRangestringDay's Range
fiftyTwoWeekRangestring52 Week Range
volumestringVolume
avgVolumestringAvg Volume

Example dataset item

This compact example is a subset of one item in local Actor storage; every displayed value is unmodified.

{
"scrapedAt": "2026-07-23T12:29:56.290Z",
"symbol": "AAPL",
"currency": "USD",
"companyName": "Apple Inc.",
"price": 325.89,
"change": -1.85,
"changePercent": -0.56,
"previousClose": "327.74",
"open": "327.88",
"bid": "323.03 x 400",
"ask": "325.97 x 400",
"daysRange": "323.34 - 329.00"
}