Yahoo Finance News Scraper avatar

Yahoo Finance News Scraper

Pricing

from $0.25 / 1,000 results

Go to Apify Store
Yahoo Finance News Scraper

Yahoo Finance News Scraper

Extracts complete Yahoo Finance news articles, including full body text and financial metadata

Pricing

from $0.25 / 1,000 results

Rating

0.0

(0)

Developer

Xtractoo

Xtractoo

Maintained by Community

Actor stats

0

Bookmarked

4

Total users

2

Monthly active users

14 days ago

Last modified

Share

Yahoo Finance Article Scraper

Extract full article text, headline, and metadata from finance.yahoo.com article URLs. Yahoo Finance aggregates financial news from multiple sources alongside original reporting, covering markets, stocks, ETFs, earnings, and macroeconomic trends.

Why Use This Actor?

  • Market news aggregation - Yahoo Finance pulls from Reuters, AP, Motley Fool, and other sources in one place.
  • Stock research automation - extract earnings reports, analyst notes, and company news programmatically.
  • Financial NLP datasets - Yahoo Finance market coverage provides consistent financial language for model training.
  • Multi-source access - a single Yahoo Finance URL may aggregate content from several wire services.

How It Works

This actor uses only HTTP requests - no browser, no Selenium, no Playwright. Articles are extracted in seconds with RAM usage well under 256 MB.

Input

{
"url": "https://finance.yahoo.com/markets/options/articles/example-slug",
"urls": [
"https://finance.yahoo.com/news/article-one-abc123.html",
"https://finance.yahoo.com/markets/options/articles/article-two-xyz"
]
,
"mode": "article",
"limit": 10
}

Output

{
"url": "https://finance.yahoo.com/markets/stocks/articles/tesla-toyota-expose-surprising-auto-043700448.html",
"source": "Yahoo Finance",
"title": "Tesla, Toyota expose surprising auto industry truth",
"description": "",
"content": "Toyota Motor (TM)andTesla (TSLA)are generally seen as rivals in theglobal auto business. Toyotais themanufacturing powerhouse,sellingmore than 11 million automobilesa year in almost every major market.Teslais theelectric vehicle disruptorthat pushed the industry toembrace batteries,softwareandautonomous driving. ButToyota’slatest earnings report underscores how the relationship between the two is more complicated than just a simple rivalry....",
"image": "https://s.yimg.com/os/en/thestreet_881/d31d6b1ab70ce83310d4580362aa77f8",
"language": "en-US",
"word_count": 334,
"published_date": "",
"modified_date": "",
"authors": [],
"categories": "",
"tags": ""
}

Fetch Latest News

Set mode to "latest" to fetch the newest article URLs and titles from Yahoo Finance instead of extracting a single article.

Input:

{
"mode": "latest",
"limit": 10
}

Output - array of objects:

[
{
"url": "https://finance.yahoo.com/sectors/energy/articles/wall-street-just-sent-oil-203300330.html",
"title": "Wall Street just sent oil stocks a brutal message after Iran’s move",
"published_date": "2026-04-19T20:33:00Z",
"source": "Yahoo Finance"
}
//...
]

Source: https://finance.yahoo.com/news/rssindex (RSS feed)

Cron Schedule: Auto-Fetch Newest Articles

Combine mode: "latest" and mode: "article" to keep a fresh feed running on autopilot:

  1. Schedule a recurring run of this Actor with {"mode": "latest", "limit": 20} via Apify Schedules (UI ▸ Schedules ▸ Create new). A cron expression like */30 * * * * runs it every 30 minutes.
  2. Webhook the dataset of the latest run into another Actor run with mode: "article" and the new URLs as input — Apify integrations let you chain runs via the "Actor finished" webhook without any glue code.
  3. The article-mode run extracts the full body, image, authors, and metadata for each URL and appends to your master dataset.

Common cron expressions:

FrequencyCron
Every 15 minutes*/15 * * * *
Hourly0 * * * *
Every 6 hours0 */6 * * *
Daily at 06:00 UTC0 6 * * *

Notes

  • Works on both finance.yahoo.com/news/ and finance.yahoo.com/markets/ article URL formats
  • Yahoo Finance ticker pages (e.g., /quote/AAPL) and screener pages are not supported

Other News Actors

Need a different news source? All actors in this collection:

ActorSource
aljazeera-scraperAl Jazeera
apnews-scraperAP News
bbc-scraperBBC News
cnbc-scraperCNBC
forbes-scraperForbes
fortune-scraperFortune
ft-scraperFinancial Times
guardian-scraperThe Guardian
msn-scraperMSN News
nytimes-scraperNew York Times
reuters-scraperReuters
scmp-scraperSouth China Morning Post
techcrunch-scraperTechCrunch
upi-scraperUPI
yahoo-finance-scraperYahoo Finance
smart-news-loaderAny URL - adaptive HTTP loader
bloomberg-scraperBloomberg

All actors support mode: "latest" for fetching newest article URLs from each source.