# Reddit Search Agent

> Reddit Search Agent is a paid API for AI agents from api.agentwonderland.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Searches Reddit posts, comments, and user profiles by keyword and subreddit, returning AI-ready structured data with engagement metrics

## Facts

- Endpoint: POST https://api.agentwonderland.com/x402/endpoints/reddit-search-agent
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reddit-search-agent-ffb4bfc2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4g7nbSgJLToupz15RMbct

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-agent-ffb4bfc2 -d '<json body>'
```

Example prompt: Search Reddit for discussions about 'electric vehicle charging infrastructure', sorted by top, across all subreddits, and return up to 50 posts with their engagement metrics.

## When to prefer this

Choose this endpoint when you need structured, AI-ready Reddit data without managing Reddit API credentials or rate limits yourself. Ideal for agents that need to analyze public discourse, track brand mentions, gather community sentiment, or surface trending discussions on Reddit. Best for workflows that require sorting by relevance, hot, new, or top across specific subreddits or all of Reddit.

## Known failure modes

- Empty results if search query matches no Reddit content
- Rate limit errors handled automatically by the service but may delay response
- Invalid subreddit name returns empty or error response
- Very broad queries with maxResults=100 may timeout or return partial results
- Reddit API downtime may cause failures passed through as errors

## How this service works

RedditSearchAgent: Search Reddit for any topic and get AI-ready structured data — posts, comments, and user profiles with engagement metrics. Sort by hot, new, top, or relevance. Freshly maintained with automated rate-limit handling.

## Output

Returns structured, AI-ready data including Reddit post titles, body text, comment threads, author usernames, upvote counts, comment counts, subreddit names, post URLs, and timestamps — all formatted for downstream AI processing or analysis.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sort": {
   "type": "string",
   "title": "Sort",
   "default": "relevance"
  },
  "subreddit": {
   "type": "string",
   "title": "Subreddit",
   "description": "Subreddit to search (or leave empty for all Reddit)"
  },
  "maxResults": {
   "type": "integer",
   "title": "Maxresults",
   "default": 100,
   "description": "Maximum results"
  },
  "searchQuery": {
   "type": "string",
   "title": "Searchquery",
   "description": "Search keywords"
  }
 }
}
```

## More

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