Yahoo Finance API Scraper
Pricing
from $0.50 / 1,000 symbol data rows
Yahoo Finance API Scraper
Yahoo Finance market data via the mobile API: real-time quotes, symbol search, and full company summary/financials. Human-friendly inputs (search terms) resolved through Yahoo's own mobile search endpoint.
Yahoo Finance Scraper ποΈ β Scrape Yahoo Finance.com Symbol, Name, Type, Exchange
Yahoo Finance Scraper β Yahoo Finance market data via the mobile API: real-time quotes, symbol search, and full company summary/financials. Human-friendly inputs (search terms) resolved through Yahoo's own mobile search endpoint. It reads Yahoo Finance's own API directly, so it's fast, reliable and complete β no flaky HTML parsing, no headless browser. Export to JSON, CSV, Excel, or an API.
β¨ Why use this Yahoo Finance Scraper?
- π’ No code required β set your input, click Start, download your data.
- β‘ Fast & accurate β reads Yahoo Finance's own private API and returns structured JSON, not scraped HTML.
- π§Ύ Rich, structured data β every field below, clean and ready to use.
- π Full pagination β collects results to your
maxItemscap. - πΈ Transparent pay-per-result pricing β pay only for the rows you get.
- π€ Export anywhere β JSON, CSV, Excel, XML, or pull it live via the Apify API.
π― What can you do with Yahoo Finance data?
- Market & competitor research β analyse Yahoo Finance records at scale.
- Price & availability monitoring β track changes over time.
- Data science & trend analysis β build clean datasets.
- Lead generation & enrichment β feed Yahoo Finance data into your own tools.
π₯ What data does the Yahoo Finance Scraper extract?
Each row includes: symbol, shortName, quoteType, exchange, currency, regularMarketPrice, regularMarketChange, regularMarketChangePercent, regularMarketVolume, marketCap, regularMarketDayRange, fiftyTwoWeekRange, trailingPE, quote β¦and more. See the full Data table below.
π How to scrape Yahoo Finance.com (3 steps)
- Set your input β provide
queryorsymbols(see the table below; defaults work out of the box). - Pick options β filters, a
proxyConfiguration, and amaxItemscap. - Run & export β click Start, then download the dataset as JSON/CSV/Excel or fetch it via the API.
βοΈ Input
| Field | Type | Default | Description |
|---|---|---|---|
query | string | apple | A human-friendly search string (e.g. 'apple', 'tesla', 'S&P 500', 'bitcoin'). Resolved to the best-matching symbol via Yahoo's own mobile search endpoint. |
symbols | array of string | β | Optional explicit ticker symbols (e.g. AAPL, MSFT, BTC-USD). Advanced: bypasses search resolution. |
resultsPerQuery | integer | 1 | How many matching symbols to keep from each search term. |
includeSummary | boolean | true | Fetch the full company summary/financials detail (30 quoteSummary modules) for each symbol. |
includeHistory | boolean | false | Fetch a price-history time series (chart) for each symbol. |
historyRange | enum | 1mo | Range for price history when enabled. β one of 1d, 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, 10y, ytd, max |
historyInterval | enum | 1d | Candle interval for price history. β one of 1m, 5m, 15m, 30m, 1h, 1d, 1wk, 1mo |
region | string | US | Market region code (e.g. US, GB, DE). |
lang | string | en-US | Language code (e.g. en-US). |
maxItems | integer | 0 | 0 = all resolved symbols. |
proxyConfiguration | object | Apify Proxy | Route requests through a proxy (Apify Proxy by default). |
Example input
{"query": "apple","resultsPerQuery": 1,"includeSummary": true,"includeHistory": false,"historyRange": "1mo","historyInterval": "1d","region": "US","lang": "en-US","maxItems": 0,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"]}}
π€ Output
Each result is a JSON object like this:
{"symbol": "TSLA","shortName": "Tesla, Inc.","quoteType": "EQUITY","exchange": "NMS","currency": "USD","regularMarketPrice": 394.045,"regularMarketChange": -8.85498,"regularMarketChangePercent": -2.1978111,"regularMarketVolume": 19107152,"marketCap": 1479924252672,"regularMarketDayRange": "390.96 - 399.63","fiftyTwoWeekRange": "293.55 - 498.83","trailingPE": 361.5092,"quote": {"β¦": "80 fields"},"summary": {"β¦": "30 fields"},"chart": {"meta": {"β¦": "25 fields"},"timestamp": [1780925400,1781011800,"β¦+19 more"],"indicators": {"quote": [{"β¦": "5 fields"}],"adjclose": [{"β¦": "1 fields"}]}},"searchMatch": {"β¦": "15 fields"}}
π§Ύ Data table
| Field | Type | Description |
|---|---|---|
symbol | text | Symbol |
shortName | text | Name |
quoteType | text | Type |
exchange | text | Exchange |
currency | text | Currency |
regularMarketPrice | number | Price |
regularMarketChange | number | Change |
regularMarketChangePercent | number | Change % |
regularMarketVolume | number | Volume |
marketCap | number | Market cap |
regularMarketDayRange | text | Day range |
fiftyTwoWeekRange | text | 52-week range |
trailingPE | number | Trailing P/E |
quote | object | Full quote |
summary | object | Summary & financials |
chart | object | Price history |
searchMatch | object | Search match |
π° Pricing β pay per result
This actor uses pay-per-event pricing: you pay only for the rows it delivers.
| You scrape | Price |
|---|---|
| Symbol data row | $2.00 per 1,000 rows |
π Use the Yahoo Finance Scraper via API
Run it programmatically with the Apify API:
curl -X POST "https://api.apify.com/v2/acts/yahoofinance-api-scraper/runs?token=YOUR_TOKEN" \-H 'Content-Type: application/json' \-d '{"query": "apple","resultsPerQuery": 1,"includeSummary": true,"includeHistory": false,"historyRange": "1mo","historyInterval": "1d","region": "US","lang": "en-US","maxItems": 0,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"]}}'
Or with the Apify CLI: apify call yahoofinance-api-scraper -i input.json -o.
β FAQ
Do I need an account or API key for Yahoo Finance?
No. The actor talks to Yahoo Finance's public/mobile API for you β you only need an Apify account.
Do I need a proxy?
A proxy is recommended for reliable runs; set proxyConfiguration (Residential is safest for geo-restricted or bot-protected sites).
What export formats are supported?
JSON, CSV, Excel, XML, JSONL, RSS, or live via the Apify API and dataset endpoints.
Is scraping this legal?
You are responsible for how you use the data. Scrape only public record data and comply with Yahoo Finance.com's Terms and applicable law (e.g. GDPR/CCPA for personal data).
π οΈ How it works
The actor impersonates Yahoo Finance's official app/site and calls its private API the same way the app does, then normalises each response into the flat record above. No browser, no HTML scraping β just clean, structured data.
π Good to know
- Scrape only public record data and respect Yahoo Finance.com's Terms of Service and robots policy.
- For personal data, comply with GDPR/CCPA and applicable law β you are the data controller.
- Fields can be
nullwhen Yahoo Finance doesn't expose them for a given record.
β Found this useful?
Give the Yahoo Finance Scraper a star on Apify and check out my other apify-*-api-scraper actors.