Easily scrape news from Google News page in .json format.
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.
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})();
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}
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.
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.
It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.
Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.
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!