# StableSocial Reddit Search

> StableSocial Reddit Search is a paid API for AI agents from socialx402.com, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-16).

Search Reddit posts and content via a pay-per-request API requiring no authentication or subscription

## Facts

- Endpoint: POST https://socialx402.com/api/reddit/search
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-reddit-search-eda3786b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2BF84Jg7tQGJv1c4P7oAu

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 stablesocial-reddit-search-eda3786b -d '<json body>'
```

Example prompt: Search Reddit for the top posts this week about 'AI agents' and show me the titles, subreddits, and upvote counts — I want the 10 most relevant results sorted by relevance.

## When to prefer this

Choose this endpoint when you need Reddit-specific search data without setting up Reddit OAuth credentials or paying for a subscription. Ideal for one-off or low-volume searches where pay-per-request economics are favorable, or for automated agents that need frictionless Reddit data access via x402 micropayments.

## Known failure modes

- Payment not provided or insufficient USDC — returns 402 Payment Required
- Invalid or missing search query — returns 400 Bad Request
- Reddit rate limiting or upstream unavailability — returns 503 or timeout
- No results found for the query — returns empty results array
- Malformed POST body — returns 400 with validation error

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

Returns a list of Reddit posts matching the search query, including post titles, subreddit names, upvote counts, comment counts, post URLs, authors, and timestamps. Results are paginated and sorted according to specified parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cursor": {
   "type": "string",
   "description": "Pagination cursor"
  },
  "keywords": {
   "type": "string",
   "minLength": 1,
   "description": "Search keywords"
  },
  "max_posts": {
   "type": "integer",
   "default": 50,
   "maximum": 9007199254740991,
   "minimum": -9007199254740991,
   "description": "Maximum posts to collect"
  },
  "max_page_size": {
   "type": "integer",
   "default": 50,
   "maximum": 9007199254740991,
   "minimum": -9007199254740991,
   "description": "Results per page"
  }
 }
}
```

## More

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