# Reddit Search

> Reddit Search is a paid API for AI agents from stableenrich.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Searches Reddit posts by query and returns matching results

## Facts

- Endpoint: POST https://stableenrich.dev/api/reddit/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reddit-search-f8e744cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6oVZ2ng08HTjB1XrA1owy

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability reddit-search-f8e744cd -d '<json body>'
```

Example prompt: Search Reddit for recent posts about 'OpenAI GPT-5 release' and show me the top results including titles, links, and scores.

## When to prefer this

Use this endpoint when you need to find real Reddit discussions, opinions, or community sentiment on any topic. Ideal for social listening, market research, or surfacing organic user perspectives that search engines may not surface as prominently. Choose this over general web search when Reddit-specific community content is desired.

## Known failure modes

- Empty results for very niche or misspelled queries
- Rate limiting or quota exceeded errors
- No posts found for very recent events not yet indexed
- Query too broad returns irrelevant results
- Network timeout on Reddit API side

## How this service works

Reddit Search - Search Reddit posts

## Output

Returns a list of Reddit posts matching the search query, including post titles, URLs, subreddits, scores, comment counts, and other metadata.

## Example request

```json
{
 "sort": "relevance",
 "query": "artificial intelligence",
 "timeframe": "month",
 "maxResults": 10
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sort": {
   "enum": [
    "relevance",
    "new",
    "top",
    "comment_count"
   ],
   "type": "string",
   "default": "relevance",
   "description": "Sort order for results"
  },
  "after": {
   "type": "string",
   "description": "Pagination cursor"
  },
  "query": {
   "type": "string",
   "minLength": 1,
   "description": "Search term for Reddit posts"
  },
  "timeframe": {
   "enum": [
    "all",
    "day",
    "week",
    "month",
    "year"
   ],
   "type": "string",
   "default": "all",
   "description": "Time range filter"
  },
  "maxResults": {
   "type": "number",
   "default": 10,
   "maximum": 25,
   "minimum": 1,
   "description": "Maximum results to return"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/reddit-search-f8e744cd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableenrich.dev](https://www.zero.xyz/host/stableenrich.dev/llms.txt)
