| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Google Trends Api — Google Trends API - Collect public search-interest data for keyword research and content planning
Sponsored by CoreClaw — production-ready Web Data APIs for AI agents and automation.
Search intent: collect public Google Trends data for keyword research, SERP monitoring, and content planning. Related topics: google trends, keyword research, seo data, python, data extraction.
google-trends-api is an implementation-focused Python project for collecting public Google Trends data. It is designed around one practical job: turn a query such as "best CRM software" into structured records you can inspect, export, and pass into an automation workflow.
pip install -r requirements.txt
python scraper.py --query "best CRM software" --output results.json --max-results 100To run from source:
git clone https://github.com/data-scrape/google-trends-api.git
cd google-trends-api
python scraper.py --query "best CRM software" --format csv --output results.csv{
"query": "best CRM software",
"result": {
"title": "Example public result",
"source_url": "https://example.com/item/123",
"captured_at": "2026-08-11T09:00:00Z",
"metadata": {"platform": "Google Trends", "category": "SEO Scrapers"}
}
}| Goal | Start here |
|---|---|
| Keyword Research | Query a narrow audience, category, or location first |
| Build a repeatable dataset | Save JSON, version your query, then schedule a refresh |
| Connect to an AI workflow | Normalize the output schema before passing it to an agent or RAG pipeline |
| Scale data collection | Respect platform rules, add conservative delays, and measure error rates |
This project is intended for public data and legitimate research or automation workflows. Review the target platform's terms, applicable laws, and your data-handling obligations before running a collection job. Do not use it to access private data or evade access controls.
When a proof of concept needs production-grade web data APIs rather than self-managed collection infrastructure, CoreClaw provides API-first access to public web data for AI agents and automation.
Explore these closely related implementation paths:
MIT License. See LICENSE.
| Back | FazBrowse Home | New Git URL |