Google's discussions module — the Reddit, Quora, and forum threads it injects into the SERP — as structured JSON with position, title, link, and Google's freshness label. Know which community threads Google elevates on your queries before they shape buyer perception.
4.8 · 33 reviewsThe result.peopleAreSaying array captures the discussions module whenever Google renders it — included in every base SERP call.
import requests
response = requests.post(
"https://api.cloro.dev/v1/monitor/google",
headers={
"Authorization": "Bearer sk_live_your_api_key_here",
"Content-Type": "application/json"
},
json={
"query": "is notion good for project management",
"country": "US",
"device": "mobile"
}
)
print(response.json()) {
"success": true,
"result": {
"peopleAreSaying": [
{
"position": 1,
"title": "Notion for project management — 2 years in, honest review",
"link": "https://www.reddit.com/r/Notion/comments/...",
"date": "5 days ago"
},
{
"position": 2,
"title": "Why we moved off Notion for PM (and what we use now)",
"link": "https://www.reddit.com/r/projectmanagement/comments/...",
"date": "2 weeks ago"
}
]
}
} | Field | Type | Description |
|---|---|---|
| position | number | Position within the module (1-indexed). |
| title | string | Card title as displayed on the SERP. |
| link | string | Destination URL — typically a Reddit, Quora, or community forum thread. |
| date | string | Google's raw relative-time text (e.g. "5 days ago") — free-form string, not a parsed timestamp. |
Pick a plan that fits your volume. Price per credit drops as you scale.
Increased concurrency, overages on credits and credit discounts for annual contracts.
Know moreCredit cost per request varies by provider. The figures below are for async/batch requests; sync requests add a +2 credit surcharge.
ChatGPT full response includes query fan-out, ads, and shopping data. Google News uses the same pricing as Google Search.
Since Google started boosting forum content, Reddit threads routinely outrank vendor pages on high-intent queries — and those threads carry unfiltered opinions about you. If a negative thread enters this module on a buying-intent query, it shapes deals before you ever see the prospect.
Opinion-seeking and experience-seeking queries — "is X good", "X vs Y", "X alternatives", troubleshooting. Mobile shows the module more aggressively than desktop, so sample both devices across your query set to map your exposure.
No — the discussions module is parsed from every base Google SERP call alongside organic results and People Also Ask.
It's Google's visible relative-time label, verbatim ("5 days ago", "2 weeks ago") — useful for spotting when a fresh thread displaces an old one, which usually signals a discussion gaining traction. It's a free-form string, so treat it as a label, not a timestamp.
Yes — the same community threads that win this module tend to get cited by AI Overview and ChatGPT. Teams typically track the discussions module and ChatGPT sources together to see where community sentiment enters AI answers.