business_data_reddit_search
Search Reddit for business-related discussions and communities using targeted keywords to analyze market trends and customer sentiment.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| depth | No | Number of results to return | |
| keyword | Yes | Keyword to search on Reddit | |
| limit | No | Maximum number of results to return per page | |
| offset | No | Offset for pagination | |
| search_type | No | Type of search to perform | |
| sort_by | No | Sorting method |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"description": "Number of results to return",
"type": "number"
},
"keyword": {
"description": "Keyword to search on Reddit",
"type": "string"
},
"limit": {
"description": "Maximum number of results to return per page",
"type": "number"
},
"offset": {
"description": "Offset for pagination",
"type": "number"
},
"search_type": {
"description": "Type of search to perform",
"enum": [
"communities",
"posts"
],
"type": "string"
},
"sort_by": {
"description": "Sorting method",
"enum": [
"relevance",
"hot",
"top",
"new"
],
"type": "string"
}
},
"required": [
"keyword"
],
"type": "object"
}