# StableSocial Reddit Subreddit Posts

> StableSocial Reddit Subreddit Posts is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-15).

Fetches posts from a specified Reddit subreddit with configurable sort order and timeframe, returning paginated results.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/reddit/subreddit
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-reddit-subreddit-posts-3680317a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DGKzTleM9DK5rV_nQiRGy

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-subreddit-posts-3680317a -d '<json body>'
```

Example prompt: Pull the top posts from the r/MachineLearning subreddit from the past week, sorted by top, and give me a trimmed-down version of the results.

## When to prefer this

Choose this endpoint when you need no-auth, pay-per-request access to Reddit subreddit posts without managing Reddit API credentials or subscriptions. Ideal for lightweight, occasional scraping of subreddit content where setting up OAuth with Reddit's own API is impractical. Prefer this over direct Reddit API calls when you want to avoid rate limit management and API key handling.

## Known failure modes

- Invalid or banned subreddit name returns an error or empty result
- Reddit rate limiting or downtime causes request failure
- Invalid 'after' cursor causes pagination errors or empty results
- Invalid sort or timeframe enum values may cause a 400-level error
- Private or quarantined subreddits may return no data

## 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 posts from the specified subreddit including post metadata such as titles, scores, upvote ratios, author info, URLs, and a pagination cursor ('after') for fetching subsequent pages. If 'trim' is true, returns a reduced subset of fields per post.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sort": {
   "enum": [
    "best",
    "hot",
    "new",
    "top",
    "rising"
   ],
   "type": "string",
   "description": "Sort order"
  },
  "trim": {
   "type": "boolean",
   "description": "Set to true for a trimmed down version of the response"
  },
  "after": {
   "type": "string",
   "description": "After to get more posts. Get 'after' from previous response."
  },
  "subreddit": {
   "type": "string",
   "minLength": 1,
   "description": "Subreddit name"
  },
  "timeframe": {
   "enum": [
    "all",
    "day",
    "week",
    "month",
    "year"
   ],
   "type": "string",
   "description": "Timeframe to get posts from"
  }
 }
}
```

## More

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