Skip to main content
This section documents the related searches data returned by the Google Search endpoint. Related searches are part of the Google response — no separate API call is needed.

Example request

{
  "query": "best laptops for programming",
  "country": "US"
}
This produces a response containing the relatedSearches array documented below.

Overview

Related searches are query suggestions surfaced by Google at the bottom of the results page, based on the original query and user behavior signals.
Related searches in Google Search
FieldTypeDescription
querystringRelated search query
linkstringGoogle search URL for the related query

Response example

{
  "success": true,
  "result": {
    "relatedSearches": [
      {
        "query": "best laptops for programming under $1000",
        "link": "https://www.google.com/search?q=best+laptops+for+programming+under+%241000"
      },
      {
        "query": "best laptop for python programming",
        "link": "https://www.google.com/search?q=best+laptop+for+python+programming"
      },
      {
        "query": "best laptops for software developers 2026",
        "link": "https://www.google.com/search?q=best+laptops+for+software+developers+2026"
      }
    ]
  }
}