scrapers
latest

Contents:

  • Introduction to DataKund
  • Yellow Pages Business Details Scraper Bot
  • Instagram profile Scraper Bot
  • LinkedIn Search Results Scraper Bot
  • Google Trends Scraper Bot
    • Code
    • Response Data
  • Reddit Post Scraper
  • Square Yards Properties Scraper With No Input
  • 9/11 Victim List Scraper
  • Coin Market Cap Scraper
  • All movie scraper
  • Amazon Product Price Scraper Bot
  • Bing Search Scraper
  • Coindesk Price Scraper with Commodity Link
  • Down Detector Scraper
  • Epoch Timestamp Converter Scraper
  • Facebook Friend List Scraper Bot
  • Gaana Scraper
  • Google Scholar Scraper
  • Google Search Result Scraper
  • IMDb Top 250 Movies Scraper
  • Goodreads by Keyword Scraper
  • Investing.com World Indices Scraper
  • Trading View Market Indices Scraper
  • Trip Advisor Reviews Scraper
  • Twitter Data Scrape
  • Wikipedia Current Events
  • Wikipedia GDP per Capita Scraper
  • Wordpress Blog Post Scraper
  • Worldometer COVID Stats Scraper
  • Yahoo Finance Historical Data Scraper
  • Yahoo finance Scraper
  • Yahoo Ticker Symbol Scraper
  • Yelp Review Scraper
  • Youtube Data Scrape
  • Youtube Playlist Scraper
  • Contact Us
scrapers
  • »
  • Google Trends Scraper Bot
  • Edit on GitHub

Google Trends Scraper Bot

Enter the keyword of which data you want to scrape and click on submit button. Bot will scrape trending searches related to the keyword in Google Search across various regions.

Code

from bot_studio import *
datakund = bot_studio.new()
response = datakund.google_trends(keyword="apple")
var datakund=require("datakund")
datakund.google_trends("apple")
curl -X POST http://127.0.0.1:5000/run -H 'cache-control: no-cache' -H 'content-type: application/json' -d '{"user":"apiKey","bot":"google_trends~D75HsPTUIeOmN0bLp5ulrwB7F1f2","publicbot":true,"outputdata":{"keyword":"apple"}}'

Response Data

                        {
  "body": [
        {
          "state": "Chandigarh",
          "trend": "100"
        },
        {
          "state": "Delhi",
          "trend": "87"
        },
        {
          "state": "Punjab",
          "trend": "85"
        },
        {
          "state": "Himachal Pradesh",
          "trend": "81"
        },
        {
          "state": "Haryana",
          "trend": "77"
        }
  ],
  "errors": [],
  "resume_variable": "n",
  "success_score": "100"
}
Previous Next

© Copyright 2022, datakund. Revision 82610b31.

Built with Sphinx using a theme provided by Read the Docs.