Retrieving digital assets...
Scrape news articles from news.google.com with deep article content extraction
99%
30s
500+
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
query | String | Yes | "Elon Musk" | Search term to find news articles on Google News |
maxItems | Integer | Yes | 10 | Maximum number of news articles to retrieve (10–5000) |
hl | String | No | "en-US" | Language code for the Google News interface (e.g., en-US, en-IN, fr-FR) |
gl | String | No | "US" | Country code for Google News (e.g., US, IN, GB, FR) |
deepScrape | Boolean | No | true | Visit each article page to extract full content, author, and metadata |
proxyConfiguration | Object | No | Apify Residential | Proxy settings for the scraper |
{
"query": "artificial intelligence",
"maxItems": 50,
"hl": "en-US",
"gl": "US",
"deepScrape": true,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}
The scraper outputs structured JSON data for each news article found on Google News.
| Field | Type | Description |
|---|---|---|
position | Integer | Article position in the results |
title | String | Article headline |
link | String | URL to the full article |
source | String | Source name (e.g., "CNN", "BBC News") |
date | String | Publication date as shown on Google News |
author | String | Article author (from deep scrape) |
publisher | String | Publisher name |
publishedDate | String | ISO publication date (from deep scrape) |
description | String | Article description or summary |
snippet | String | Short text snippet shown in Google News |
wordCount | Integer | Approximate word count of the article |
readingTime | Number | Estimated reading time in minutes |
deepScrapeStatus | String | Status of deep scraping (success/failed/skipped) |
domain | String | Domain of the article URL |
keywords | String | Keywords extracted from the article metadata |
language | String | Language of the article |
{
"position": 1,
"title": "OpenAI Releases GPT-5 With Improved Reasoning Capabilities",
"link": "https://www.techcrunch.com/2025/01/15/openai-gpt-5-release",
"source": "TechCrunch",
"date": "2 hours ago",
"author": "Jane Smith",
"publisher": "TechCrunch",
"publishedDate": "2025-01-15T08:00:00.000Z",
"description": "OpenAI has officially launched GPT-5, featuring significantly improved reasoning and coding capabilities...",
"snippet": "The new model shows a 40% improvement over GPT-4 on standard benchmarks...",
"wordCount": 850,
"readingTime": 4,
"deepScrapeStatus": "success",
"domain": "techcrunch.com",
"keywords": "OpenAI, GPT-5, AI, language model",
"language": "en"
}
Explore more automation tools and scrapers to supercharge your data acquisition workflow.