Yahoo Finance Stocks Scraper
Under maintenancePricing
Pay per usage
Yahoo Finance Stocks Scraper
Under maintenanceScrapes 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
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
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.
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
symbols | array | Yes | ["AAPL"] | Array of stock ticker symbols to scrape (e.g. AAPL, MSFT, GOOGL). |
proxyConfiguration | object | No | — | Proxy 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.
| Field | Type | Description |
|---|---|---|
description | string | Description |
scrapedAt | string | Scraped At |
symbol | string | Ticker Symbol |
currency | string | Currency |
companyName | string | Company Name |
price | number | Current Price |
change | number | Price Change |
changePercent | number | Change % |
previousClose | number | Previous Close |
open | number | Open |
bid | string | Bid |
ask | string | Ask |
daysRange | string | Day's Range |
fiftyTwoWeekRange | string | 52 Week Range |
volume | string | Volume |
avgVolume | string | Avg 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"}