Scrapingdog

Google Trends Trending Now API

The Google Trends Trending Now API retrieves currently trending searches from Google, filtered by location, time range, and language preferences.

Endpoint: https://api.scrapingdog.com/google_trends/trending_now

API Parameters

🔑

Authentication

  • api_key Required
    Your personal API key. Available on your dashboard.
🔗

Request Parameters

  • geo Required
    This parameter specifies the location from which the search originates. Default: US

    Type: String
  • hours Optional
    By default, it is set to 24 (Past 24 hours). Google provides the following predefined values: 4 (Past 4 hours), 24 (Past 24 hours), 48 (Past 48 hours), 168 (Past 7 days)

    Type: String
  • language Optional
    This parameter specifies the language for the Google Trends Trending Now search. It accepts a two-letter language code (e.g., en for English, es for Spanish, or fr for French)

    Type: String

API Examples

Code to Integrate
curl "https://api.scrapingdog.com/google_trends/trending_now?api_key=APIKEY&geo=US"
API Response
{
  "trending_searches": [
    {
      "title": "richard chamberlain",
      "start_timestamp": 1743336000,
      "end_timestamp": "",
      "active": true,
      "search_volume": 200000,
      "increase_percentage": 1000,
      "trend_breakdown": [
        "richard chamberlain",
        "martin rabbett",
        "the thorn birds"
      ]
    }
  ]
}