Reddit

REDDIT_SEARCH_ACROSS_SUBREDDITS

Searches Reddit for content (e.g., posts, comments) using a query, with results typically confined to subreddits unless `restrict_sr` is set to False.

Remote reddit

Other tools also called REDDIT_SEARCH_ACROSS_SUBREDDITS? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "sort": {
      "enum": [
        "relevance",
        "new",
        "top",
        "comments"
      ],
      "type": "string",
      "title": "Sort",
      "default": "relevance",
      "examples": [
        "relevance",
        "new",
        "top",
        "comments"
      ],
      "description": "The criterion for sorting search results. 'relevance' (default) sorts by relevance to the query. 'new' sorts by newest first. 'top' sorts by highest score (typically all-time). 'comments' sorts by the number of comments."
    },
    "limit": {
      "type": "integer",
      "title": "Limit",
      "default": 5,
      "maximum": 100,
      "examples": [
        "5",
        "10",
        "25"
      ],
      "description": "The maximum number of search results to return. Default is 5. Maximum allowed value is 100."
    },
    "restrict_sr": {
      "type": "boolean",
      "title": "Restrict Sr",
      "default": true,
      "examples": [
        true,
        false
      ],
      "description": "If True (default), confines the search to posts and comments within subreddits. If False, the search scope is broader and may include matching subreddit names or other Reddit entities."
    },
    "search_query": {
      "type": "string",
      "title": "Search Query",
      "examples": [
        "latest AI research",
        "funny cat videos",
        "python programming tips"
      ],
      "description": "The search query string used to find content across subreddits."
    }
  }
}
          

Provider

Reddit →