Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.cloro.dev/llms.txt

Use this file to discover all available pages before exploring further.

This section documents the people are saying data returned by the Google Search endpoint. 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.
People are saying module on the Google SERP
The peopleAreSaying field is omitted from result when the module is absent — treat it as optional rather than expecting an empty array.

Card structure

FieldTypeDescription
positionnumberPosition within the module (1-indexed)
titlestringCard title as displayed on the SERP
linkstringDestination URL the card points to
datestringGoogle’s raw relative-time text (e.g., "5 days ago", "2 weeks ago"). Not normalized.

Response example

{
  "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"
      }
    ]
  }
}