> ## Documentation Index
> Fetch the complete documentation index at: https://cloro.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Related searches

> Schema for related search suggestions returned by the Google Search endpoint, including query text and links that surface related user intent on the SERP.

This section documents the **related searches** data returned by the [Google Search endpoint](/api-reference/endpoint/monitor-google). Related searches are part of the Google response, so no separate API call is needed.

## Example request

```json theme={null}
{
  "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 appear in the order Google displays them on the SERP; array index `0` is the first suggestion shown.

<Frame caption="Related searches in Google Search">
  <img src="https://mintcdn.com/cloro/Qv2xgJAgMecwTTRq/images/google/search-related-searches.webp?fit=max&auto=format&n=Qv2xgJAgMecwTTRq&q=85&s=2620ed83ca080210977e7a2dbe9cbef3" alt="Related searches in Google Search" width="1378" height="600" data-path="images/google/search-related-searches.webp" />
</Frame>

## Related search structure

| Field   | Type   | Description                             |
| ------- | ------ | --------------------------------------- |
| `query` | string | Related search query                    |
| `link`  | string | Google search URL for the related query |

## Response example

```json theme={null}
{
  "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"
      }
    ]
  }
}
```
