Using Google Trends Trending Now API you can scrape Google Trends Trending Now results. Each successful request will cost you 5 API credits.
You have to send a GET request to http://api.scrapingdog.com/google_trends/trending_now with the below-given parameters.
Google Trends Trending Now API pricing is available here.
Parameters
Scrapingdog Parameters
Parameter
Description
api_key
required
Your personal API key. Available on your dashboard.
Type: String
Search Query
Parameter
Description
geo
required
This parameter specifies the location from which the search originates. By default, it is set to the US if the geo parameter is not provided or left empty.
Type: String
Advanced Parameters
Parameter
Description
hours
This parameter specifies the time range in past hours for retrieving results. 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
Localization
Parameter
Description
language
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).
<?php
// Set the API key and request parameters
$api_key = '5eaa61a6e562fc52fe763tr516e4653';
$geo = 'US';
// Set the API endpoint
$url = 'https://api.scrapingdog.com/google_trends/trending_now/?api_key=' . $api_key . '&geo=' . $geo;
// Initialize cURL session
$ch = curl_init($url);
// Set cURL options
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Execute the cURL request
$response = curl_exec($ch);
// Check if the request was successful
if ($response === false) {
echo 'cURL error: ' . curl_error($ch);
} else {
// Process the response data as needed
echo $response;
}
// Close the cURL session
curl_close($ch);
require 'net/http'
require 'uri'
# Set the API key and request parameters
api_key = '5eaa61a6e562fc52fe763tr516e4653'
geo = 'US'
# Construct the API endpoint URL
url = URI.parse("https://api.scrapingdog.com/google_trends/trending_now/?api_key=#{api_key}&geo=#{geo}")
# Create an HTTP GET request
request = Net::HTTP::Get.new(url)
# Create an HTTP client
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true # Enable SSL (https)
# Send the request and get the response
response = http.request(request)
# Check if the request was successful
if response.is_a?(Net::HTTPSuccess)
puts response.body # Process the response data as needed
else
puts "HTTP request failed with code: #{response.code}, message: #{response.message}"
end
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.io.IOException;
public class Main {
public static void main(String[] args) {
try {
// Set the API key and request parameters
String apiKey = "5eaa61a6e562fc52fe763tr516e4653";
String geo = "US"
// Construct the API endpoint URL
String apiUrl = "https://api.scrapingdog.com/google_trends/trending_now/?api_key=" + apiKey
+ "&geo=" + geo
// Create a URL object from the API URL string
URL url = new URL(apiUrl);
// Open a connection to the URL
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// Set the request method to GET
connection.setRequestMethod("GET");
// Get the response code
int responseCode = connection.getResponseCode();
if (responseCode == 200) {
// Read the response from the connection
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String inputLine;
StringBuilder response = new StringBuilder();
while ((inputLine = reader.readLine()) != null) {
response.append(inputLine);
}
reader.close();
// Process the response data as needed
System.out.println(response.toString());
} else {
System.out.println("HTTP request failed with response code: " + responseCode);
}
// Close the connection
connection.disconnect();
} catch (IOException e) {
e.printStackTrace();
}
}
}