ReddGrowReddGrow Docs

Domains

Track Reddit mentions of any domain

Find domain mentions

Find Reddit posts that link to a specific domain. Returns posts sorted by recency. Useful for brand monitoring, competitor tracking, and finding communities discussing your content.

GET
/agent/domains/{domain}/mentions

Authorization

x-api-key<token>

API key starting with rg_. Create one at https://app.reddgrow.ai/settings/api-keys

In: header

Path Parameters

domainRequiredstring

Domain to search for (without protocol, e.g., "example.com")

Query Parameters

limitinteger

Number of items to return (max 100)

Default: 25Minimum: 1Maximum: 100
curl -X GET "https://api.reddgrow.ai/agent/domains/example.com/mentions" \
  -H "x-api-key: <token>"

Posts mentioning the domain

[
  {
    "id": "abc123",
    "title": "TypeScript 5.4 released — what's new?",
    "selftext": "string",
    "author": "typescript_fan",
    "created_utc": 1704067200,
    "url": "https://devblogs.microsoft.com/typescript/announcing-typescript-5-4/",
    "permalink": "/r/typescript/comments/abc123/typescript_54_released/",
    "subreddit": "typescript",
    "score": 1247,
    "num_comments": 89,
    "domain": "devblogs.microsoft.com",
    "thumbnail": "string",
    "preview_url": "string",
    "post_hint": "image",
    "is_self": true
  }
]