Google News Scraper - Cheap

Google News Scraper - Cheap

Easily scrape news from Google News page in .json format.

AUTOMATIONNEWSSEO_TOOLSApify

Scrape all Google News data

Our Google News Scraper allows you to extract news metadata such as title, link, source, publication date. The search is query-based but you can also extract general news by using an empty query.

The actor has a simple interface where you can specify your query as well as the language you want to use for news titles. Google News Scraper doesn't limit the number of results you can view which is a significant advantage when compared to manual browsing using Google News website. While using a regular Google News search, you'll only get approximately 100 results for your query.

How it works

1import { ApifyClient } from 'apify-client';
2
3const client = new ApifyClient({
4    token: '<YOUR_API_TOKEN>',
5});
6
7const input = {
8    "query": "food", // or null (all)
9    "lang": "en",
10    "country": "US",
11    "maxItems": 100
12};
13
14(async () => {
15
16    const run = await client.actor("bot_kevin/Google-News-Scraper").call(input);
17    const { items } = await client.dataset(run.defaultDatasetId).listItems();
18   console.log(await items);
19
20})();

Sample output

1{
2  title: 'Miss Manners: Should I have told him that his fancy food was awful? - The Mercury News',
3  description: 'Miss Manners: Should I have told him that his fancy food was awful?',
4  link: 'https://news.google.com/rss/articles/M6Ly93d3cubWVWhpcy1mYW5jeS1mb29kLXdhcy1hd2Z1bC9hbXAv?oc=5',
5  companyName: 'The Mercuryd News',
6  companyUrl: 'https://www.mercurynews.om',
7  pubDateUnix: 1709918779
8}

Frequently Asked Questions

Is it legal to scrape job listings or public data?

Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.

Do I need to code to use this scraper?

No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.

What data does it extract?

It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.

Can I scrape multiple pages or filter by location?

Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.

How do I get started?

You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!