> ## 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.

# People Are Saying

> Schema for cards from Google's 'What people are saying' SERP module returned by the Google Search endpoint, including source URLs, snippets, and themes.

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

## Overview

Google's "What people are saying" module (sometimes labeled "Trending posts and discussions") surfaces community-thread cards on the SERP, typically pointing at Reddit, Quora, or other forum threads relevant to the query. When this module is present, the response includes a `peopleAreSaying` array where each entry is a single card.

<Frame caption="People are saying module on the Google SERP">
  <img src="https://mintcdn.com/cloro/M-UPJPsx4tqYJ0J-/images/google/search-people-are-saying.webp?fit=max&auto=format&n=M-UPJPsx4tqYJ0J-&q=85&s=37d50a11a37bd705e225c9d7bf82a9f2" alt="People are saying module on the Google SERP" width="693" height="424" data-path="images/google/search-people-are-saying.webp" />
</Frame>

The `peopleAreSaying` field is omitted from `result` when the module is absent — treat it as optional rather than expecting an empty array.

## Card structure

| Field      | Type   | Description                                                                              |
| ---------- | ------ | ---------------------------------------------------------------------------------------- |
| `position` | number | Position within the module (1-indexed)                                                   |
| `title`    | string | Card title as displayed on the SERP                                                      |
| `link`     | string | Destination URL the card points to                                                       |
| `date`     | string | Google's raw relative-time text (e.g., `"5 days ago"`, `"2 weeks ago"`). Not normalized. |

## Response example

```json theme={null}
{
  "success": true,
  "result": {
    "peopleAreSaying": [
      {
        "position": 1,
        "title": "Best running shoes 2026 - what runners are saying",
        "link": "https://www.reddit.com/r/running/comments/example/",
        "date": "5 days ago"
      },
      {
        "position": 2,
        "title": "Honest review of the Gel-Nimbus 28 after 200 miles",
        "link": "https://www.quora.com/example",
        "date": "2 weeks ago"
      }
    ]
  }
}
```
