Yahoo News Scraper avatar

Yahoo News Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Yahoo News Scraper

Yahoo News Scraper

Scrape Yahoo News articles across categories, trending stories, and keyword search. Extracts headline, summary, source, publication date, image, and category from Yahoo News RSS feeds. No proxy required.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

9 days ago

Last modified

Share

Scrape Yahoo News articles — trending stories, category feeds, and keyword search — across 6 Yahoo News regional editions (US, UK, Canada, Australia, Singapore, Japan), with no proxy, no authentication, and no API key required. Uses Yahoo's official RSS feeds for 100% reliability and fresh data updated every 5 minutes.

What You Can Scrape

  • Trending top stories — the most important stories for any supported region right now
  • Category news — articles from region-specific verticals: US covers World, Politics, Finance, Health, Science, Entertainment, Sports, Lifestyle and more; UK/Canada/Australia/Singapore/Japan each expose the subset of categories Yahoo actually publishes for that edition (see Regions below)
  • Keyword search — every category feed of the selected region filtered by any keyword or phrase, including non-Latin scripts (e.g. Japanese)

Use Cases

  • News monitoring — track coverage of your company, brand, or topic across Yahoo News
  • Media research — analyze news trends across multiple categories
  • Competitive intelligence — monitor industry news and source coverage
  • Content aggregation — build news feeds for specific topics
  • Sentiment analysis — collect news headlines and summaries for NLP pipelines
  • Data journalism — research how stories break across Yahoo's news network

Modes

ModeDescription
getTrendingTop stories from Yahoo News homepage (default)
browseCategoryBrowse one or more news category feeds
searchFilter all Yahoo News categories by keyword

Input

ParameterTypeDefaultDescription
modeenumgetTrendinggetTrending, browseCategory, search
regionenumusYahoo News regional edition: us, uk, ca, au, sg, jp
searchQueriesstring[]Required for search mode. Keywords to find.
categoriesenum[]Required for browseCategory. One or more categories valid for the selected region.
maxItemsinteger50Maximum articles to return (1–1000)
keywordstringOptional extra keyword filter on title/description
sourceFilterstringOptional source filter (e.g. Reuters, BBC)

Regions & Supported Categories

Yahoo does not mirror the full category list on every regional edition — only categories confirmed live are exposed per region. Selecting a category that isn't available for the chosen region is ignored with a warning (the run still proceeds with the remaining valid categories).

RegionDomainCategories
United States (us, default)news.yahoo.comtopstories, us, world, politics, finance, health, science, entertainment, sports, lifestyle, oddlyenough
United Kingdom (uk)uk.news.yahoo.comtopstories, world, finance, sports
Canada (ca)ca.news.yahoo.comtopstories, world, finance, sports
Australia (au)au.news.yahoo.comtopstories, world
Singapore (sg)sg.news.yahoo.comtopstories, world, sports
Japan (jp)news.yahoo.co.jptopstories, domestic, world, business, entertainment, sports, it, science, local

Note on Japan: Yahoo Japan's RSS feeds carry only title, link, and pubDate — no description, sourceName/sourceUrl, or imageUrl. Records from the jp region will therefore have fewer populated fields than other regions; this reflects what Yahoo's Japanese feeds actually publish, not a scraping limitation.

Output

Each record is one news article.

{
"title": "Senate Passes Budget Bill in Late-Night Vote",
"description": "The Senate voted 52-48 to pass the budget bill after a marathon session.",
"sourceName": "Associated Press",
"sourceUrl": "https://apnews.com",
"link": "https://www.yahoo.com/news/politics/articles/senate-passes-budget-bill-123.html",
"publishedAt": "2026-05-26T02:10:39Z",
"imageUrl": "https://media.zenfs.com/en/ap.org/abc123.jpg",
"imageWidth": 2400,
"imageHeight": 1350,
"category": "politics",
"region": "us",
"guid": "https://www.yahoo.com/news/politics/articles/senate-passes-budget-bill-123.html",
"scrapedAt": "2026-05-26T06:00:00Z"
}

Output Fields

FieldTypeDescription
titlestringArticle headline
descriptionstringArticle summary/excerpt (not present for the jp region)
sourceNamestringPublisher name (e.g. Reuters, AP, BBC) — not present for the jp region
sourceUrlstringPublisher homepage URL — not present for the jp region
linkstringFull article URL
publishedAtstringISO 8601 UTC publication date/time
imageUrlstringThumbnail image URL (CDN) — not present for the jp region
imageWidthintegerImage width in pixels
imageHeightintegerImage height in pixels
categorystringCategory slug (us, world, politics, etc.)
regionstringYahoo News regional edition this record was scraped from (us, uk, ca, au, sg, jp)
guidstringUnique article identifier
scrapedAtstringISO 8601 UTC scrape timestamp

FAQ

Does this require a proxy? No. Yahoo News RSS feeds are publicly accessible from datacenter IPs with no rate limiting or bot detection.

How fresh is the data? Yahoo News RSS feeds update every 5 minutes.

How many articles are in each feed? Each category RSS feed contains up to roughly 50 articles, depending on the region and category.

How does search mode work? Search mode fetches every category RSS feed of the selected region and filters articles client-side by your keyword(s). Yahoo's dedicated search RSS endpoint is unreliable (it returns HTTP 500), so this actor never calls it — client-side filtering across category feeds is the reliable approach.

Can I filter by date? Use publishedAt in the output to filter by date in your own workflow. All articles include a precise ISO 8601 publication timestamp.

Are all Yahoo News regions supported? Six regions are supported: US, UK, Canada, Australia, Singapore, and Japan. Other Yahoo News editions (e.g. Yahoo España, Yahoo Taiwan) were not added because their RSS feed availability wasn't verified reliable at build time — only regions confirmed live are exposed. See the Regions table above for exactly which categories are available per region.

Why do some sourceUrl links return a 401/403 when checked outside a browser? sourceUrl is the publisher's own homepage (e.g. reuters.com, thehill.com), not a Yahoo URL. Some publishers run bot-protection (e.g. DataDome) that blocks anonymous non-browser requests to their homepage while working normally in a real browser. This is outside the actor's control and does not affect the primary link field, which always points to the actual Yahoo-hosted article.

What sources are included? Yahoo News aggregates from thousands of publishers including AP, Reuters, BBC, CNN, Fox News, Bloomberg, The Guardian, and many more.

How do I get articles from a specific news source only? Use the sourceFilter input. For example, set sourceFilter: "Reuters" to return only Reuters articles. Note it's a literal substring match — "AP" will not match "Associated Press" since "ap" isn't a substring of that name; use sourceFilter: "Associated Press" instead.