Google Trends Daily & Real-Time Search Trends Scraper
Pricing
from $0.40 / 1,000 google trends results
Google Trends Daily & Real-Time Search Trends Scraper
Extract real-time trending search queries, approximate traffic volume, news headlines, and direct Google links by country via official RSS feed.
Pricing
from $0.40 / 1,000 google trends results
Rating
0.0
(0)
Developer
Morgane Flamant
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
9 days ago
Last modified
Categories
Share
π Google Trends Daily & Real-Time Search Trends Scraper
A high-performance Apify Actor built in Python to extract trending search queries, search traffic estimates, related news headlines, and direct Google Search URLs via official Google Trends RSS feeds.
π Key Features
- β‘ Ultra Fast (<2 Seconds): Hits Google Trends' official RSS feeds directly via
httpxasync requests and parses XML natively usingxml.etree.ElementTree. Zero browser overhead (~128MB RAM footprint). - π Multi-Country Support: Pass any list of 2-letter ISO country codes (e.g.
US,GB,FR,DE,IN,JP,BR). - π₯ Traffic Estimates & News Headlines: Extract approximate search volume (e.g.,
500,000+), picture URLs, and associated news articles with source links and snippets. - π Store-Ready Dataset: Automatically pushes Pydantic-validated dataset records with built-in tabular overview support.
π₯ Input Parameters
The Actor accepts the following input settings in JSON format:
| Parameter | Type | Default | Description |
|---|---|---|---|
geos | array | ["US", "GB", "FR", "DE"] | List of 2-letter ISO country codes to scrape trends from. |
maxItemsPerGeo | integer | 50 | Maximum number of trending queries to extract per selected country. |
Example Input JSON
{"geos": ["US", "GB", "JP"],"maxItemsPerGeo": 25}
π€ Output Format
Each item pushed to the output dataset follows a structured schema:
{"query": "Super Bowl 2026","geo": "US","approx_traffic": "2,000,000+","search_url": "https://www.google.com/search?q=Super+Bowl+2026","published_at": "Tue, 25 Aug 2026 08:00:00 +0000","description": "Trending search query in the United States","picture_url": "https://t0.gstatic.com/images?q=tbn:...","articles": [{"title": "Super Bowl 2026 updates and highlights","url": "https://news.example.com/sports/super-bowl-2026","source": "ESPN","snippet": "Everything you need to know about Super Bowl 2026...","image_url": "https://t0.gstatic.com/images?q=tbn:..."}]}
π Running Locally
Step 1: Install Dependencies
$pip install -r requirements.txt
Step 2: Run the Actor
$python -m src.main
π³ Docker Support
To build and run containerized:
docker build -t google-trends-scraper .docker run -it google-trends-scraper