Reddit

reddit_get_post

Fetch full post content for up to 100 Reddit posts by their t3_ ids in one call -- the follow-up loop after reddit_search or reddit_get_subreddit_posts. Costs 4 credits for up to 10 ids, +1 credit per further 10 ids; every post comes back with its full body text. With exactly ONE id you may set detail to 'full' for +4 credits to also get the discussion tree (comments flattened in tree order with depth, about 200 per page, with a comments_cursor to continue), or pass comment_id (a t1_ id, also +4 credits) to fetch one specific comment in its post context. Post ids come from the other Reddit tools or from reddit_resolve_url on a post URL. Not for discovering posts; search first, then batch-fetch here.

Remote veezeehq/veezee

Remote (network-hosted)

Other tools also called reddit_get_post? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "sort": {
      "type": "string"
    },
    "cursor": {
      "type": "string"
    },
    "detail": {
      "type": "string"
    },
    "post_ids": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "freshness": {
      "type": "string"
    },
    "comment_id": {
      "type": "string"
    },
    "max_credits": {
      "type": "number"
    }
  }
}
          

Provider

Reddit →