# Google Search API

{% hint style="success" %}
To enable this engine, set the **`engine=google`** parameter.
{% endhint %}

Scraping Google Search results takes a lot of effort in the background, as Google has multiple ways to detect and prevent scrapers. Luckily, with the Google API, you don't have to deal with anything other than sending the GET request to our endpoint, and our engine will return you the data in almost no time.

<figure><img src="https://1192456954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9wbsYOleiAqS785aMtPp%2Fuploads%2FO2QtHDGzpM2utEqcQ161%2Fgoogle-search.png?alt=media&#x26;token=747db55c-9fa4-4180-bbd1-b63dcdd8ada3" alt=""><figcaption><p>Scrape Google Search Results</p></figcaption></figure>

### Google Search API Integration Examples

We will use following URL as an example for this request:

```
https://serpapi.webscrapingapi.com/v2?engine=google&api_key=<YOUR_API_KEY>&q=history
```

### Ready to Use Google Search Scraping Scripts:

{% tabs %}
{% tab title="cURL" %}
{% code overflow="wrap" %}

```bash
curl --request GET --url "https://serpapi.webscrapingapi.com/v2?engine=google&api_key=<YOUR_API_KEY>&q=history"
```

{% endcode %}
{% endtab %}

{% tab title="NodeJS" %}
{% code overflow="wrap" %}

```javascript
const http = require("https");

const options = {
  "method": "GET",
  "hostname": "serpapi.webscrapingapi.com",
  "port": null,
  "path": "/v2?engine=google&api_key=YOUR_API_KEY&q=history",
  "headers": {}
};

const req = http.request(options, function (res) {
  const chunks = [];

  res.on("data", function (chunk) {
    chunks.push(chunk);
  });

  res.on("end", function () {
    const body = Buffer.concat(chunks);
    console.log(body.toString());
  });
});

req.end();
```

{% endcode %}
{% endtab %}

{% tab title="Python" %}
{% code overflow="wrap" %}

```python
import http.client

conn = http.client.HTTPSConnection("serpapi.webscrapingapi.com")

conn.request("GET", "/v2?engine=google&api_key=YOUR_API_KEY&q=history")

res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))
```

{% endcode %}
{% endtab %}

{% tab title="PHP" %}
{% code overflow="wrap" %}

```php
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://serpapi.webscrapingapi.com/v2?engine=google&api_key=YOUR_API_KEY&q=history",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
```

{% endcode %}
{% endtab %}

{% tab title="Go" %}
{% code overflow="wrap" %}

```go
package main

import (
	"fmt"
	"net/http"
	"io/ioutil"
)

func main() {

	url := "https://serpapi.webscrapingapi.com/v2?engine=google&api_key=YOUR_API_KEY&q=history"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

{% endcode %}
{% endtab %}

{% tab title="Java" %}
{% code overflow="wrap" %}

```java
HttpResponse<String> response = Unirest.get("https://serpapi.webscrapingapi.com/v2?engine=google&api_key=YOUR_API_KEY&q=history")
  .asString();
```

{% endcode %}
{% endtab %}

{% tab title=".NET" %}
{% code overflow="wrap" %}

```csharp
var client = new RestClient("https://serpapi.webscrapingapi.com/v2?engine=google&api_key=YOUR_API_KEY&q=history");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

{% endcode %}
{% endtab %}

{% tab title="Ruby" %}
{% code overflow="wrap" %}

```ruby
require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://serpapi.webscrapingapi.com/v2?engine=google&api_key=YOUR_API_KEY&q=history")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
```

{% endcode %}
{% endtab %}
{% endtabs %}

### Google Search Specific Parameters

#### #1: Query Parameter

<table><thead><tr><th width="187">Parameter</th><th width="107" align="center">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>q</code><br><mark style="color:red;background-color:red;">Required</mark></td><td align="center"><code>string</code></td><td>The keywords that you are searching for on Google (the query).</td></tr></tbody></table>

#### #2: Request Customization Parameters

<table><thead><tr><th width="202">Parameter</th><th width="106" align="center">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>tbm</code></td><td align="center"><code>string</code></td><td><p>The parameter defines the type of search you want to do. It can be:</p><p>- <code>isch</code> for images</p><p>- <code>vid</code> for videos</p><p>- <code>nws</code> for news</p><p>- <code>shop</code> for shopping.<br>* <em>If left unset it will continue with the regular Google search.</em></p></td></tr><tr><td><code>ibp</code></td><td align="center"><code>string</code></td><td>The parameter is used for Jobs search type. Example:<br>- <code>ibp=htl;jobs</code></td></tr></tbody></table>

#### #3: Device and Geolocation Parameters

<table><thead><tr><th width="184">Parameter</th><th width="106" align="center">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>device</code></td><td align="center"><code>string</code></td><td>The device used for your Google search. Can be set to <code>desktop</code>, <code>mobile</code> or <code>tablet</code>.</td></tr><tr><td><code>domain</code></td><td align="center"><code>string</code></td><td>The Google domain that you want to use for your search.</td></tr><tr><td><code>uule</code></td><td align="center"><code>string</code></td><td>The Google encoded location that you want to use for your search. A list of all the geotargeting locations can be found <a href="https://developers.google.com/adwords/api/docs/appendix/geotargeting">here</a>.</td></tr><tr><td><code>hl</code></td><td align="center"><code>string</code></td><td>The language you want to use for your Google search. <a href="https://developers.google.com/custom-search/docs/xml_results_appendices#interfaceLanguages">List of supported languages</a></td></tr><tr><td><code>gl</code></td><td align="center"><code>string</code></td><td>The country you want to use for your Google search. <a href="https://developers.google.com/custom-search/docs/xml_results_appendices#countryCodes">List of supported countries</a></td></tr></tbody></table>

#### #4: Pagination Parameters

<table><thead><tr><th width="202">Parameter</th><th width="106" align="center">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>start</code></td><td align="center"><code>int</code></td><td>The offset of the Google Search results. Represents the number of results that you want to skip.</td></tr><tr><td><code>num</code></td><td align="center"><code>int</code></td><td>The number of results returned on each page.</td></tr></tbody></table>

<details>

<summary>Response Example</summary>

```json
{
    "general": {
        "search_engine": "google",
        "results_cnt": 12730000000,
        "search_time": 0.35,
        "language": "en",
        "location": "United States",
        "mobile": false,
        "basic_view": false,
        "search_type": "text",
        "page_title": "history - Google Search",
        "timestamp": "2024-10-08T11:57:01.533Z"
    },
    "input": {
        "original_url": "https://google.com/search?q=history",
        "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36"
    },
    "navigation": [
        {
            "title": "Images",
            "href": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=history&udm=2&fbs=AEQNm0Aa4sjWe7Rqy32pFwRj0UkWd8nbOJfsBGGB5IQQO6L3J_86uWOeqwdnV0yaSF-x2jrJh7Dt5wV71ckxEPe_0GQy-jesvN6vMz55mIX5dVVnFlQFVP0N53BkFbPbiN1TN23T4lGb1-hqsT4v9_qoyFMXOmCflPWWjGUoCzYLt5gnYGoVKvehEJ_8Loqlvnzh0Q1vRPnyLhWPs-47LhUoNfs7lZyTyw&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8QtKgLegQIFRAB"
        },
        {
            "title": "Videos",
            "href": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=history&tbm=vid&source=lnms&fbs=AEQNm0Aa4sjWe7Rqy32pFwRj0UkWd8nbOJfsBGGB5IQQO6L3J_86uWOeqwdnV0yaSF-x2jrJh7Dt5wV71ckxEPe_0GQy-jesvN6vMz55mIX5dVVnFlQFVP0N53BkFbPbiN1TN23T4lGb1-hqsT4v9_qoyFMXOmCflPWWjGUoCzYLt5gnYGoVKvehEJ_8Loqlvnzh0Q1vRPnyLhWPs-47LhUoNfs7lZyTyw&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Q0pQJegQIFhAB"
        },
        {
            "title": "News",
            "href": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=history&tbm=nws&source=lnms&fbs=AEQNm0Aa4sjWe7Rqy32pFwRj0UkWd8nbOJfsBGGB5IQQO6L3J_86uWOeqwdnV0yaSF-x2jrJh7Dt5wV71ckxEPe_0GQy-jesvN6vMz55mIX5dVVnFlQFVP0N53BkFbPbiN1TN23T4lGb1-hqsT4v9_qoyFMXOmCflPWWjGUoCzYLt5gnYGoVKvehEJ_8Loqlvnzh0Q1vRPnyLhWPs-47LhUoNfs7lZyTyw&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Q0pQJegQIHhAB"
        },
        {
            "title": "Shopping",
            "href": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=history&udm=28&fbs=AEQNm0Aa4sjWe7Rqy32pFwRj0UkWd8nbOJfsBGGB5IQQO6L3J_86uWOeqwdnV0yaSF-x2jrJh7Dt5wV71ckxEPe_0GQy-jesvN6vMz55mIX5dVVnFlQFVP0N53BkFbPbiN1TN23T4lGb1-hqsT4v9_qoyFMXOmCflPWWjGUoCzYLt5gnYGoVKvehEJ_8Loqlvnzh0Q1vRPnyLhWPs-47LhUoNfs7lZyTyw&ved=1t:220175&ictx=111"
        },
        {
            "title": "Web",
            "href": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=history&udm=14&fbs=AEQNm0Aa4sjWe7Rqy32pFwRj0UkWd8nbOJfsBGGB5IQQO6L3J_86uWOeqwdnV0yaSF-x2jrJh7Dt5wV71ckxEPe_0GQy-jesvN6vMz55mIX5dVVnFlQFVP0N53BkFbPbiN1TN23T4lGb1-hqsT4v9_qoyFMXOmCflPWWjGUoCzYLt5gnYGoVKvehEJ_8Loqlvnzh0Q1vRPnyLhWPs-47LhUoNfs7lZyTyw&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qs6gLegQIDxAB"
        },
        {
            "title": "Forums",
            "href": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=history&udm=18&fbs=AEQNm0Aa4sjWe7Rqy32pFwRj0UkWd8nbOJfsBGGB5IQQO6L3J_86uWOeqwdnV0yaSF-x2jrJh7Dt5wV71ckxEPe_0GQy-jesvN6vMz55mIX5dVVnFlQFVP0N53BkFbPbiN1TN23T4lGb1-hqsT4v9_qoyFMXOmCflPWWjGUoCzYLt5gnYGoVKvehEJ_8Loqlvnzh0Q1vRPnyLhWPs-47LhUoNfs7lZyTyw&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qs6gLegQIDhAB"
        }
    ],
    "organic": [
        {
            "link": "https://www.history.com/",
            "display_link": "https://www.history.com",
            "title": "HISTORY | Watch Full Episodes of Your Favorite Shows",
            "description": "Watch full episodes of your favorite HISTORY series, and dive into thousands of historical articles and videos. To know History is to know life.",
            "rank": 1,
            "global_rank": 1
        },
        {
            "link": "https://myactivity.google.com/",
            "display_link": "https://myactivity.google.com",
            "title": "Welcome to My Activity",
            "description": "Welcome to My Activity. Data helps make Google services more useful for you. Sign in to review and manage your activity, including things you've searched ...",
            "rank": 2,
            "global_rank": 2
        },
        {
            "link": "https://www.merriam-webster.com/dictionary/history",
            "display_link": "https://www.merriam-webster.com › dictionary › history",
            "title": "History Definition & Meaning",
            "description": "3 days ago —",
            "rank": 3,
            "global_rank": 3
        },
        {
            "link": "https://myaccount.google.com/intro/yourdata/search",
            "display_link": "https://myaccount.google.com › intro › yourdata › search",
            "title": "Your data in Search",
            "description": "Your Search history is saved to your Google Account as part of your Web & App Activity, along with activity from other Google services.",
            "rank": 4,
            "global_rank": 8
        },
        {
            "link": "https://dictionary.cambridge.org/us/dictionary/english/history",
            "display_link": "https://dictionary.cambridge.org › dictionary › history",
            "title": "HISTORY | definition in the Cambridge English Dictionary",
            "description": "the study of or a record of past events considered together, especially events of a particular period, country, or subject.",
            "rank": 5,
            "global_rank": 9
        },
        {
            "link": "https://www.youtube.com/HISTORY",
            "display_link": "13.9M+ followers",
            "title": "History",
            "description": "The premier destination for historical storytelling. From best-in-class documentary events, to a signature slate of industry leading nonfiction series.",
            "rank": 6,
            "global_rank": 10
        },
        {
            "link": "https://en.wikipedia.org/wiki/History",
            "display_link": "https://en.wikipedia.org › wiki › History",
            "title": "History",
            "description": "History is the systematic study and documentation of human past. History is an academic discipline which uses a narrative to describe, examine, question, ...",
            "rank": 7,
            "global_rank": 11
        },
        {
            "link": "https://www.britannica.com/topic/history",
            "display_link": "https://www.britannica.com › Visual Arts › Architecture",
            "title": "History | Definition & Discipline",
            "description": "Sep 15, 2024 — History, discipline that studies the chronological record of events, usually attempting, on the basis of a critical examination of source ...",
            "extensions": [
                {
                    "inline": true,
                    "type": "text",
                    "text": "Sep 15, 2024",
                    "rank": 1
                },
                {
                    "inline": true,
                    "type": "text",
                    "text": "History, discipline that studies the chronological record of events, usually attempting, on the basis of a critical examination of source ...",
                    "rank": 2
                }
            ],
            "rank": 8,
            "global_rank": 12
        },
        {
            "link": "https://www.amnh.org/",
            "display_link": "https://www.amnh.org",
            "title": "American Museum of Natural History | New York City",
            "description": "Explore the natural world, and the known universe. All admission to the Museum is by timed entry and must be reserved online. Open daily, 10 am–5:30 pm.",
            "extensions": [
                {
                    "type": "site_link",
                    "link": "https://www.amnh.org/plan-your-visit",
                    "text": "Plan Your Visit",
                    "rank": 1
                },
                {
                    "type": "site_link",
                    "link": "https://www.amnh.org/exhibitions",
                    "text": "Exhibitions",
                    "rank": 2
                },
                {
                    "type": "site_link",
                    "link": "https://www.amnh.org/research/hayden-planetarium",
                    "text": "Hayden Planetarium",
                    "rank": 3
                },
                {
                    "type": "site_link",
                    "link": "https://www.amnh.org/calendar",
                    "text": "Calendar",
                    "rank": 4
                }
            ],
            "rank": 9,
            "global_rank": 13
        }
    ],
    "images": [
        {
            "link": "https://twitter.com/history",
            "source": "HISTORY (@HISTORY) / XX.com",
            "source_logo": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAY1BMVEUAAADj4+MWFhYwMDCurq7U1NTBwcFAQEDJycliYmJcXFwbGxvg4ODQ0NCkpKQhISGYmJja2tqBgYG4uLj9/f3p6emSkpIMDAxtbW14eHhJSUlSUlKJiYknJyeenp7z8/M3NzeFzai/AAAA10lEQVQokZ1R2RKDIAwMSMOhWEQEwar9/68s06EHti9tnjYb2GwSgD+CJiWlap75kgpofYeo+3NJA7k8niRiFj/Ykonx9Tk6ODPB73ic3tuwCRrNaEb9vlYGiAdJIlCvZe1MnmbYujWebM1DMMgpajTtcRiOW2gdfhlzzmJ2X75UNt0AE9cPft32ERZh6IGnXph9higOdjMTwU6cMqx95XWFvA5B+dBXBTfePQ8XUC68NZhYEeyyZ/fkG0EKyjuer44VZ8Hi42agUOCgVSkk/hJNsjrzL3ED1qIKGbgapfsAAAAASUVORK5CYII=",
            "image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSstUN0FRrgiZt_zBFdz4ZXYyrlbEBAg6djBV_4UaEmz_vUKzzvsEKGVO7KdQ&s",
            "image_alt": "HISTORY (@HISTORY) / X",
            "image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSstUN0FRrgiZt_zBFdz4ZXYyrlbEBAg6djBV_4UaEmz_vUKzzvsEKGVO7KdQ&s",
            "rank": 1,
            "global_rank": 14
        },
        {
            "link": "https://www.history.com/",
            "source": "HISTORY | Watch Full Episodes of Your Favorite Showswww.history.com",
            "source_logo": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAxlBMVEUEAQEAAAAqJhAqHQnSlS/BiyvlyU/Rukyuiy0TEAUbDxHLy8swMDBXPRR7VRt2Uhp+Wx5VPxUJBgJXRxqHdzGBci5FMBDIiyzXli/s0FPbvkhIPBY8LA1DOBTPsUM5KQ3JkS1iShhnVyDBlDG9mzbEqD/BhCnisDjluDzanTG3ji6xeyWucR6WWRMeEQMwHAaoYhc4IAaFVBUlAABdBghqGwgnGhxBOTpVTk4UAQYjIyNmZWWPjo6xsbGlpaW9vLyAf38SFRXuEFGmAAAA5UlEQVQokZ3Q71OCMBjAcR5FUH5YgQ2bkSZGVqBzmhuOAf7//1R6l6Ks3vh989ztc9tt07Qbg2PncbHu9u/uHzzPHzwO/EsBFAwnLoBvPuHRFbQDvfMMEL4YZkuB8T8weQ3DqQpxoEfR7A1jBWL9fT43sKnu+PjsdmcGjtoN0Duo10NfSbpQ4HDdZUpIA5I4Gf8FC0LIEmBFruHwMkqpCx6iKUX1N8J6831s8zvWJ4G9ZWXbLePAgVlZtjuDyMtcykKWhS2lXdZHcWlXlRSiEIWdi6oGx+FcVIw5OXcE4/taGmk39QPVRh18r+pCWQAAAABJRU5ErkJggg==",
            "image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQTo3zMWS7WPSx23hToalVedLyB0PGmesFYmT6Zd6Tp7BNcAIEhmXV1t3HqDA&s",
            "image_alt": "HISTORY | Watch Full Episodes of Your Favorite Shows",
            "image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQTo3zMWS7WPSx23hToalVedLyB0PGmesFYmT6Zd6Tp7BNcAIEhmXV1t3HqDA&s",
            "rank": 2,
            "global_rank": 15
        },
        {
            "link": "https://www.history.com/",
            "source": "HISTORY | Watch Full Episodes of Your Favorite Showswww.history.com",
            "source_logo": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAxlBMVEUEAQEAAAAqJhAqHQnSlS/BiyvlyU/Rukyuiy0TEAUbDxHLy8swMDBXPRR7VRt2Uhp+Wx5VPxUJBgJXRxqHdzGBci5FMBDIiyzXli/s0FPbvkhIPBY8LA1DOBTPsUM5KQ3JkS1iShhnVyDBlDG9mzbEqD/BhCnisDjluDzanTG3ji6xeyWucR6WWRMeEQMwHAaoYhc4IAaFVBUlAABdBghqGwgnGhxBOTpVTk4UAQYjIyNmZWWPjo6xsbGlpaW9vLyAf38SFRXuEFGmAAAA5UlEQVQokZ3Q71OCMBjAcR5FUH5YgQ2bkSZGVqBzmhuOAf7//1R6l6Ks3vh989ztc9tt07Qbg2PncbHu9u/uHzzPHzwO/EsBFAwnLoBvPuHRFbQDvfMMEL4YZkuB8T8weQ3DqQpxoEfR7A1jBWL9fT43sKnu+PjsdmcGjtoN0Duo10NfSbpQ4HDdZUpIA5I4Gf8FC0LIEmBFruHwMkqpCx6iKUX1N8J6831s8zvWJ4G9ZWXbLePAgVlZtjuDyMtcykKWhS2lXdZHcWlXlRSiEIWdi6oGx+FcVIw5OXcE4/taGmk39QPVRh18r+pCWQAAAABJRU5ErkJggg==",
            "image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRmr9t-iWsHE-LfKrjzKCZ1Y8mR-69DK5ZBzUhtim_2T60hkAH1bgJ6Nj6LiQ&s",
            "image_alt": "HISTORY | Watch Full Episodes of Your Favorite Shows",
            "image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRmr9t-iWsHE-LfKrjzKCZ1Y8mR-69DK5ZBzUhtim_2T60hkAH1bgJ6Nj6LiQ&s",
            "rank": 3,
            "global_rank": 16
        }
    ],
    "pagination": {
        "current_page": 1,
        "next_page": 2,
        "next_page_start": 10,
        "next_page_link": "https://google.com/search?q=history&start=10",
        "pages": [
            {
                "page": 2,
                "start": 10,
                "link": "https://google.com/search?q=history&start=10"
            },
            {
                "page": 3,
                "start": 20,
                "link": "https://google.com/search?q=history&start=20"
            },
            {
                "page": 4,
                "start": 30,
                "link": "https://google.com/search?q=history&start=30"
            }
        ]
    },
    "related": [
        {
            "items": [
                {
                    "text": "Google Photos",
                    "link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=Google+Photos&stick=H4sIAAAAAAAAAOMwVGI0-MXIsIGF4RULLxe3fq6-gaFxkoFBUsYrFn4uXv10fUPDkmITywIDw_RXLDxcXCAVlRXxJfFmr1i4uThBXKPC-KRsuKRJlnlyZRqca1xumW6A4JrkViUXmcK1WpbkFBXBJY2KjI3KDeHc9LKy5OLsRay87vn56TmpCgEZ-SX5xbfYJBm6n_YYB8aHFLxTaT4odWjPkqcmP9fNLvNetYhDLCA1vwCoNjGnOF-hODWxKDlDIS2_aAUHIwDRhJoR6wAAAA&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qs9oBKAB6BAhBEAk",
                    "image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSE5fFF3R3PE10mfk-SL7xoHgBmkZMtg-nzE2JA&s=0",
                    "image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSE5fFF3R3PE10mfk-SL7xoHgBmkZMtg-nzE2JA&s=0",
                    "rank": 1
                },
                {
                    "text": "Gemini",
                    "link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=Gemini&stick=H4sIAAAAAAAAAOMwVGI0_MXIsIGF4RULLxe3fq6-gaFxkoFBUsYrFn4uXv10fUPDkmITywIDw_RXLDxcXCAVlRXxJfFmr1i4uThBXKPC-KRsuKRJlnlyZRqca1xumW6A4JrkViUXmcK1WpbkFBXBJY2KjI3KDeHc9LKy5OLsRaxs7qm5mXmZt9gkGbqf9hgHxocUvFNpPih1aM-SpyY_180u8161iEMsIDW_ICdVITGnOF-hODWxKDlDIS2_aAUHIwDIrY9Q5AAAAA&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qs9oBKAB6BAhBEA4",
                    "image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSlXyDb3LlHFNnFEQNF1ITiIr9w4n-vzTOdRWrwA7Vi9CfZffE8gkeD&s=0",
                    "image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSlXyDb3LlHFNnFEQNF1ITiIr9w4n-vzTOdRWrwA7Vi9CfZffE8gkeD&s=0",
                    "rank": 2
                },
                {
                    "text": "Google Play Services",
                    "link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=Google+Play+Services&stick=H4sIAAAAAAAAAOMwVGI0-sXIsIGF4RULLxe3fq6-gaFxkoFBUsYrFn4uXv10fUPDkmITywIDw_RXLDxcXCAVlRXxJfFmr1i4uThBXKPC-KRsuKRJlnlyZRqca1xumW6A4JrkViUXmcK1WpbkFBXBJY2KjI3KDeHc9LKy5OLsRawi7vn56TmpCgE5iZUKwalFZZnJqcW32CQZup_2GAfGhxS8U2k-KHVoz5KnJj_XzS7zXrWIQywgNb8AqCUxpzhfoTg1sSg5QyEtv2gFByMAsJmXNPIAAAA&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qs9oBKAB6BAhBEBM",
                    "image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTfWE2WJ6oei3eRXsbvNcOvKPMSh3Oyi-wuUGEKSjgh0M4Tfc4uFTm2&s=0",
                    "image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTfWE2WJ6oei3eRXsbvNcOvKPMSh3Oyi-wuUGEKSjgh0M4Tfc4uFTm2&s=0",
                    "rank": 3
                },
                {
                    "text": "Gmail",
                    "link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=Gmail&stick=H4sIAAAAAAAAAOMwVGI0_sXIsIGF4RULLxe3fq6-gaFxkoFBUsYrFn4uXv10fUPDkmITywIDw_RXLDxcXCAVlRXxJfFmr1i4uThBXKPC-KRsuKRJlnlyZRqca1xumW6A4JrkViUXmcK1WpbkFBXBJY2KjI3KDeHc9LKy5OLsRays7rmJmTm32CQZup_2GAfGhxS8U2k-KHVoz5KnJj_XzS7zXrWIQywgNb8gJ1UhMac4X6E4NbEoOUMhLb9oBQcjALuey7DjAAAA&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qs9oBKAB6BAhBEBg",
                    "image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTxDakCD5QObX6V_5po4EzjxWo8NCi_wajMNvSg&s=0",
                    "image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTxDakCD5QObX6V_5po4EzjxWo8NCi_wajMNvSg&s=0",
                    "rank": 4
                },
                {
                    "text": "Google Chrome",
                    "link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=Google+Chrome&stick=H4sIAAAAAAAAAOMwVGI0-cXIsIGF4RULLxe3fq6-gaFxkoFBUsYrFn4uXv10fUPDkmITywIDw_RXLDxcXCAVlRXxJfFmr1i4uThBXKPC-KRsuKRJlnlyZRqca1xumW6A4JrkViUXmcK1WpbkFBXBJY2KjI3KDeHc9LKy5OLsRay87vn56TmpCs4ZRfm5qbfYJBm6n_YYB8aHFLxTaT4odWjPkqcmP9fNLvNetYhDLCA1vwCoNjGnOF-hODWxKDlDIS2_aAUHIwAF-wAY6wAAAA&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qs9oBKAB6BAhBEB0",
                    "image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQYpiSfcDSiRAfqMRe2A4adtxveJvy1ff158i1B&s=0",
                    "image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQYpiSfcDSiRAfqMRe2A4adtxveJvy1ff158i1B&s=0",
                    "rank": 5
                },
                {
                    "text": "Google Drive",
                    "link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=Google+Drive&stick=H4sIAAAAAAAAAOMwVGI0_cXIsIGF4RULLxe3fq6-gaFxkoFBUsYrFn4uXv10fUPDkmITywIDw_RXLDxcXCAVlRXxJfFmr1i4uThBXKPC-KRsuKRJlnlyZRqca1xumW6A4JrkViUXmcK1WpbkFBXBJY2KjI3KDeHc9LKy5OLsRaw87vn56TmpCi5FmWWpt9gkGbqf9hgHxocUvFNpPih1aM-SpyY_180u8161iEMsIDW_AKg0Mac4X6E4NbEoOUMhLb9oBQcjALF5YWXqAAAA&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qs9oBKAB6BAhBECI",
                    "image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ5eUHK8tWCEw-eNExV_SPkB2ducjwS4jeRTpvp&s=0",
                    "image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ5eUHK8tWCEw-eNExV_SPkB2ducjwS4jeRTpvp&s=0",
                    "rank": 6
                }
            ],
            "rank": 1,
            "global_rank": 17
        },
        {
            "text": "My history",
            "link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=My+history&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Q1QJ6BAhMEAE",
            "rank": 2,
            "global_rank": 18
        },
        {
            "text": "Delete history",
            "link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=Delete+history&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Q1QJ6BAhNEAE",
            "rank": 3,
            "global_rank": 19
        },
        {
            "text": "Search history",
            "link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=Search+history&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Q1QJ6BAhOEAE",
            "rank": 4,
            "global_rank": 20
        },
        {
            "text": "My activity history",
            "link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=My+activity+history&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Q1QJ6BAhKEAE",
            "rank": 5,
            "global_rank": 21
        },
        {
            "text": "History subject",
            "link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=History+subject&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Q1QJ6BAhIEAE",
            "rank": 6,
            "global_rank": 22
        },
        {
            "text": "Google history",
            "link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=Google+history&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Q1QJ6BAhJEAE",
            "rank": 7,
            "global_rank": 23
        },
        {
            "text": "Chrome history",
            "link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=Chrome+history&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Q1QJ6BAhLEAE",
            "rank": 8,
            "global_rank": 24
        },
        {
            "text": "History book",
            "link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=History+book&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Q1QJ6BAhHEAE",
            "rank": 9,
            "global_rank": 25
        }
    ],
    "people_also_ask": [
        {
            "question": "How do I see my search history?",
            "question_link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=How+do+I+see+my+search+history%3F&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qzmd6BAgoEAY",
            "answer_source": "How do I access & control my Google activity? - Google Account Help",
            "answer_link": "https://support.google.com/accounts/answer/7028918?hl=en&co=GENIE.Platform%3DDesktop",
            "answer_display_link": "https://support.google.com › accounts › answerhttps://support.google.com › accounts › answer",
            "answer_html": "<div class=\"IZE3Td\" jsslot=\"\"><div jsname=\"oQYOj\" class=\"r2fjmd t0bRye\" data-hveid=\"CCgQBQ\" data-ved=\"2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qu04oAHoECCgQBQ\"><div id=\"DB4FZ_PDIpaiptQP08qK-Ao__26\"><div class=\"wDYxhc\" data-md=\"83\"><div class=\"di3YZe\"><div class=\"co8aDb\" aria-level=\"3\" role=\"heading\"><b>How do I find my Google activity?</b></div><srpx-bugfix></srpx-bugfix><div class=\"RqBzHd\"><ol class=\"X5LH0c\"><li class=\"TrT0Xe\">Go to your Google Account.</li><li class=\"TrT0Xe\">On the left navigation panel, click Data &amp; privacy.</li><li class=\"TrT0Xe\">Under \"History settings,\" click My Activity.</li><li class=\"TrT0Xe\">To access your activity: Browse your activity, organized by day and time. To find specific activity, at the top, use the search bar and filters.</li></ol><div class=\"u9iNfb\"></div></div></div></div></div></div></div>",
            "answers": [
                {
                    "type": "ordered_list",
                    "title": "How do I find my Google activity?",
                    "items": [
                        {
                            "value": "Go to your Google Account.",
                            "rank": 1
                        },
                        {
                            "value": "On the left navigation panel, click Data & privacy.",
                            "rank": 2
                        },
                        {
                            "value": "Under \"History settings,\" click My Activity.",
                            "rank": 3
                        },
                        {
                            "value": "To access your activity: Browse your activity, organized by day and time. To find specific activity, at the top, use the search bar and filters.",
                            "rank": 4
                        }
                    ],
                    "rank": 1
                }
            ],
            "rank": 1,
            "global_rank": 4
        },
        {
            "question": "How do I open my history?",
            "question_link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=How+do+I+open+my+history%3F&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qzmd6BAgsEAY",
            "answer_source": "Check or delete your Chrome browsing history - Google Help",
            "answer_link": "https://support.google.com/chrome/answer/95589?hl=en&co=GENIE.Platform%3DDesktop",
            "answer_display_link": "https://support.google.com › chrome › answerhttps://support.google.com › chrome › answer",
            "answer_html": "<div class=\"IZE3Td\" jsslot=\"\"><div jsname=\"oQYOj\" class=\"r2fjmd t0bRye\" data-hveid=\"CCwQBQ\" data-ved=\"2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qu04oAHoECCwQBQ\"><div id=\"DB4FZ_PDIpaiptQP08qK-Ao__29\"><div class=\"wDYxhc\" data-md=\"83\"><div class=\"di3YZe\"><div class=\"co8aDb\" aria-level=\"3\" role=\"heading\"><b>History.</b></div><srpx-bugfix></srpx-bugfix><div class=\"RqBzHd\"><ol class=\"X5LH0c\"><li class=\"TrT0Xe\">On your computer, open Chrome.</li><li class=\"TrT0Xe\">In the address bar, enter @history .</li><li class=\"TrT0Xe\">Press tab or space. You can also click Search History. in the suggestions.</li><li class=\"TrT0Xe\">Enter keywords for the page you previously visited.</li><li class=\"TrT0Xe\">Select the page from the list.</li></ol><div class=\"u9iNfb\"></div></div></div></div></div></div></div>",
            "answers": [
                {
                    "type": "ordered_list",
                    "title": "History.",
                    "items": [
                        {
                            "value": "On your computer, open Chrome.",
                            "rank": 1
                        },
                        {
                            "value": "In the address bar, enter @history .",
                            "rank": 2
                        },
                        {
                            "value": "Press tab or space. You can also click Search History. in the suggestions.",
                            "rank": 3
                        },
                        {
                            "value": "Enter keywords for the page you previously visited.",
                            "rank": 4
                        },
                        {
                            "value": "Select the page from the list.",
                            "rank": 5
                        }
                    ],
                    "rank": 1
                }
            ],
            "rank": 2,
            "global_rank": 5
        },
        {
            "question": "How do I delete Google history?",
            "question_link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=How+do+I+delete+Google+history%3F&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qzmd6BAgqEAY",
            "answer_source": "Manage & delete your Search history - Android - Google Help",
            "answer_link": "https://support.google.com/websearch/answer/6096136?hl=en&co=GENIE.Platform%3DAndroid",
            "answer_display_link": "https://support.google.com › websearch › answerhttps://support.google.com › websearch › answer",
            "answer_html": "<div class=\"IZE3Td\" jsslot=\"\"><div jsname=\"oQYOj\" class=\"r2fjmd t0bRye\" data-hveid=\"CCoQBQ\" data-ved=\"2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qu04oAHoECCoQBQ\"><div id=\"DB4FZ_PDIpaiptQP08qK-Ao__34\"><div class=\"wDYxhc\" data-md=\"83\"><div class=\"di3YZe\"><div class=\"co8aDb\" aria-level=\"3\" role=\"heading\"><b>Manage Search history saved to your Google Account</b></div><srpx-bugfix></srpx-bugfix><div class=\"RqBzHd\"><ol class=\"X5LH0c\"><li class=\"TrT0Xe\">On your Android phone or tablet, open the Google app .</li><li class=\"TrT0Xe\">At the top right, tap your Profile picture or initial. Search history.</li><li class=\"TrT0Xe\">Choose the Search history you want to delete. You can choose: All your Search history: Above your history, tap Delete. Delete all time.</li></ol><div class=\"u9iNfb\"></div></div></div></div></div></div></div>",
            "answers": [
                {
                    "type": "ordered_list",
                    "title": "Manage Search history saved to your Google Account",
                    "items": [
                        {
                            "value": "On your Android phone or tablet, open the Google app .",
                            "rank": 1
                        },
                        {
                            "value": "At the top right, tap your Profile picture or initial. Search history.",
                            "rank": 2
                        },
                        {
                            "value": "Choose the Search history you want to delete. You can choose: All your Search history: Above your history, tap Delete. Delete all time.",
                            "rank": 3
                        }
                    ],
                    "rank": 1
                }
            ],
            "rank": 3,
            "global_rank": 6
        },
        {
            "question": "How do you define history?",
            "question_link": "https://google.com/search?sca_esv=159f37a1251190f9&gl=us&hl=en&q=How+do+you+define+history%3F&sa=X&ved=2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qzmd6BAgrEAY",
            "answer_source": "What is History? How do Historians study the past as contrasted with ...",
            "answer_link": "https://www.valdosta.edu/history/documents/what-is-history.pdf",
            "answer_display_link": "https://www.valdosta.edu › history › documents › what-i...https://www.valdosta.edu › history › documents › what-i...",
            "answer_html": "<div class=\"IZE3Td\" jsslot=\"\"><div jsname=\"oQYOj\" class=\"r2fjmd t0bRye\" data-hveid=\"CCsQBQ\" data-ved=\"2ahUKEwjz-Yyu3f6IAxUWkYkEHVOlAq8Qu04oAHoECCsQBQ\"><div id=\"DB4FZ_PDIpaiptQP08qK-Ao__41\"><div class=\"wDYxhc\" data-md=\"61\" style=\"clear:none\"><div class=\"LGOjhe\" data-attrid=\"wa:/description\" aria-level=\"3\" role=\"heading\" data-hveid=\"CCkQAA\"><span class=\"BxUVEf ILfuVd\" lang=\"en\"><span class=\"hgKElc\">History is <b>the study of change over time</b>, and it covers all aspects of human society. Political, social, economic, scientific, technological, medical, cultural, intellectual, religious and military developments are all part of history.</span></span></div></div></div></div></div>",
            "answers": [
                {
                    "type": "answer",
                    "value": {
                        "text": "History is the study of change over time, and it covers all aspects of human society. Political, social, economic, scientific, technological, medical, cultural, intellectual, religious and military developments are all part of history."
                    },
                    "rank": 1
                }
            ],
            "rank": 4,
            "global_rank": 7
        }
    ]
}
```

</details>
