WebScrapingAPI Docs
HomeLoginRegister
  • Introduction
    • Registration
    • Pricing
    • Free APIs
    • API Errors
    • Custom Response Headers
  • Browser API
    • Getting Started
      • Access the API
      • Authentication
      • API Parameters
    • Basic API Requests
      • GET Request
      • POST, PUT & PATCH Requests
      • Proxy Mode
    • Advanced API Features
      • Awaiting
      • Geolocation
      • Sessions
      • Forcing Timeouts
      • Custom Headers
      • Custom Cookies
      • Device Type
      • Viewport Sizing
      • Screenshot
      • Screenshot Options
      • Extraction Rules
      • JavaScript Instructions
      • Full JSON Response
      • JSON DOM Response
      • Block Resources
      • Captcha Solving
  • WebScrapingAPI
    • Getting Started
      • Access the API
      • API Parameters
    • Basic API Requests
      • GET Request
      • POST, PUT & PATCH Requests
    • Advanced API Features
      • Geolocation
      • Extraction Rules
      • Full JSON Response
      • JSON DOM Response
      • Rendering JavaScript
  • WebStealthProxy
    • Getting Started
      • Access the Proxy
      • Usage and Statistics
    • Basic Proxy Requests
    • Advanced Proxy Requests
      • Sessions
      • Geolocation
      • Custom Headers
      • Custom Cookies
      • Screenshots
  • Google Search API
    • Getting Started
      • Access the API
      • API Parameters
    • Google Search Engines
      • Google Search API
      • Google Maps API
      • Google Maps Reviews API
      • Google Reverse Image API
      • Google Trends API
        • Geo Parameter Options List
        • Google Trends Categories List
  • WB CUSTOM SEARCH API
    • Getting Started
      • Access the API
      • API Parameters
    • WB Custom Search Engines
      • Wayfair Product API
      • Best Buy Product API
      • Nordstrom Product API
  • Amazon Search API
    • Getting Started
      • API Parameters
      • Access the API
      • Supported Domains
    • Amazon Search Types
      • Amazon Search
      • Amazon Seller
        • Amazon Seller Products
        • Amazon Seller Profile
        • Amazon Seller Feedback
      • Amazon Product
      • Amazon Category
      • Amazon Bestsellers
      • Amazon New Releases
      • Amazon Deals
  • Bing Search API
    • Getting Started
      • Access the API
      • API Parameters
    • Basic API Requests
Powered by GitBook
On this page
  • Related Searches Results Request Example
  • Request Example That Returns Related Searches Elements
  1. Google Search API
  2. Google APIs Response
  3. Google Search API

Related Searches Results

Scrape Google Related Searches and expand your area of research.

When you perform a search on Google you may sometimes get some related searches along with the results as well. You can retrieve these related searches through the related_searches property from the API response. The properties of each related search results are:

Element
Type
Description

link

String

Query-string to link to the Google page

query

String

Text of related search

Related Searches Results Request Example

Request Example That Returns Related Searches Elements

GET https://serpapi.webscrapingapi.com/v1?engine=google&api_key=<YOUR_API_KEY>&q=Is%20there%20a%20new%20season%20of%20futurama%3F

This is a basic GET request that returns the related searches found on the Google page.

Query Parameters

Name
Type
Description

q

String

Is there a new season of futurama?

api_key*

String

<YOUR_API_KEY>

{
    ...
    "related_searches": [
        {
        "query": "futurama season 10",
        "link": "/search?q=Futurama+season+10&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwFXoECCgQAQ"
        },
        {
        "query": "futurama season 11",
        "link": "/search?q=Futurama+season+11&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwFnoECCcQAQ"
        },
        {
        "query": "futurama new season 2021",
        "link": "/search?q=Futurama+new+season+2021&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwF3oECCYQAQ"
        },
        {
        "query": "how many seasons of futurama",
        "link": "/search?q=How+many+seasons+of+Futurama&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwGHoECCUQAQ"
        },
        {
        "query": "futurama season 8",
        "link": "/search?q=Futurama+season+8&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwGXoECCAQAQ"
        },
        {
        "query": "will futurama return 2020",
        "link": "/search?q=Will+Futurama+return+2020&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwGnoECCMQAQ"
        },
        {
        "query": "is futurama coming back in 2021",
        "link": "/search?q=Is+Futurama+coming+back+in+2021&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwG3oECCEQAQ"
        },
        {
        "query": "futurama reboot 2021",
        "link": "/search?q=Futurama+reboot+2021&sa=X&ved=2ahUKEwjnxpH9hZryAhXMD1kFHTrGCIgQ1QIwHHoECB8QAQ"
        }
    ],
    ...
}

Last updated 2 years ago

Scrape Google Related Searches
Page cover image