RankrRankr/Documentation
Menu
Reddit posts

List Reddit posts cited by AI

Reddit threads cited by AI providers, with subreddit, score, comment count, and full self-text. Responses are JSON and require a workspace API key.

GET/v1/brands/{brand_id}/reddit-posts
Requires API key

Parameters

brand_iduuid· pathrequired
limitinteger· queryoptional
cursorISO-8601· queryoptional
Request
curl -X GET 'https://api.rankr.so/v1/brands/:brand_id/reddit-posts' \
  -H 'Authorization: Bearer YOUR_API_KEY'
Response200
JSON
{
  "data": [
    {
      "id": "abcd1234-....",
      "post_id": "abcde1",
      "url": "https://www.reddit.com/r/saas/comments/abcde1/...",
      "title": "Which widget platform do you use?",
      "subreddit": "saas",
      "author": "u/example",
      "score": 142,
      "num_comments": 48,
      "selftext": "We've been evaluating several widget platforms …",
      "created_utc": "2026-03-15T19:00:00Z",
      "last_fetched_at": "2026-04-19T06:05:22Z",
      "created_at": "2026-03-16T08:01:00Z"
    }
  ],
  "next_cursor": null
}